just export email on 1 field only

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
justsimple
User
Posts: 17

just export email on 1 field only

Post 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 ?


arbei
User
Posts: 9286

Post 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;


justsimple
User
Posts: 17

Post 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 ?


Post Reply