I use option export to word from view page. I don’t need to export all fields so I unset unnecessary fields from “Fields” tab > “Export” (checkbox) but all fields are still exporting. I think it has been working in earlier versions of phpmaker. Not now (v2024.9).Please let me know if it is possible somehow to forbid exporting some certain fields by Server Events?
Yes, the export option is under the List page. By default all fields in the View page are exported, but you may use server event such as Page_Load to set the field object’s Exportable porperty as false.
This worked for me: $this->my_field_name->Exportable = FALSE;Would you also please let me know if it is possible not to export $header data which I place in from Page Data Rendering event?