Hi,
i have a column:
$col["title"] = "Test"; $col["name"] = "Type"; $col["editable"] = false; $col["edittype"] = "select"; $col["editoptions"] = $modules; which is disbaled for editing but i want it to be temporarily enabled ONLY on adding new data to the table. How can i do this? Thx
1 Answers
Pasting from docs:
You can also customize in one line, on which dialog/section this column will be displayed. Possible options are true or false. This may override the hidden and edithidden settings. See column-access.php
$col[“show”] = array(“list”=>true, “add”=>true, “edit”=>true, “view”=>true, “bulkedit”=>true);
Let me know if you need something else.
Your Answer