Hello,
The code
$col[“hidden”] = true;
hide the column in the grid, and the field in edit or add.
How to hide the column in the grid and show the field in add ?
Thanks a lot for your help,
Pierre-Yves
2 Answers
In documentation…
$col[“show”] = array(“list”=>false, “add”=>true, “edit”=>false, “view”=>false, “bulkedit”=>false);
Hope it solved your case.
Your Answer