Hello community. I want to hide a column only in the view form. I mean, it has to be editable and visible in the add and edit forms. How i do this?. Thanks.
2 Answers
Try:
$col["show"] = array("view"=>false, "add"=>true, "edit"=>true, "list"=>true);
Your Answer