Hello all.If i want hide some fields for master table when they appears on top from detail list (when i use grid icon), i just can do it when i select hide the field in list page.If in list page, select hide field, the field is hidden too in view(from master), in master detail view. I tried with field visibility extension, setting in advanced settings the specified field to 0 or false in master variable, but does not work.My master table name is programacion and one of fields name to hide is cod_secIf i open programacionmaster file i can read in te beginning:if ($programaciones->cod_sec->Visible)
Where and how can i change Visible parameter to false? I tried to use some codes from forum, in list master page, in view master page, but any of then works for me. (v2017)In advance, thanks for any help.
as @jbalbas indicated, you can use $GLOBALS[“”]->->Visible = FALSE;
I always write it as $this->field_name->Visible = FALSE;place it in page_load event of any table’s add, edit,view,list page to hide a given field from that specific page