I need to hide some columns in my detail table when exporting (pdf and print).
Alternatively if there's a way to remove links in the detail table when exporting that would also be OK.
I tried using this in Page_Load of the Preview page and List page of the detail table:
if (IsExport("pdf")){
$this->myField->Exportable = false;
}
but it doesn't seem to do anything...