Hi,
our database table has many colums.
So we do not want to show all the columns on the grid table, but want to show them all in the edit dialogue to be able to edit all the entries.
Couldn’t find the right hint…
Regards,
Thomas
1 Answers
Hi,
You can make rows to be editable but not present in listing.
// don't show this column in list $col["hidden"] = true; // and display it on Add or Edit forms. $col["editrules"] = array("edithidden"=>true);
Your Answer