Page 1 of 1

just export email on 1 field only

Posted: Fri Jan 13, 2017 10:36 am
by justsimple

I have about 7 fields so when I click export to email, all fields will be sent.
Is it possible to choose only 1 field to export email ?


Re: just export email on 1 field only

Posted: Fri Jan 13, 2017 1:11 pm
by arbei

You can set the field property "Exportable" to FALSE in Page_Load Server Event.

For example:
if ($this->Export <> "")
$this-><Field>->Exportable = FALSE;


Re: just export email on 1 field only

Posted: Fri Jan 13, 2017 1:28 pm
by justsimple

Thanks, It works!
Next question if you don't mind is
how do I make the field name / caption to be hidden or dissappeared when I export it ?