I'm just feeling my way around PHP Grid and I must say, it's excellent. I'll be registering it.
The problem I have is that after customising the fields, the edit form now comes up blank. In-line editing is fine, but highlight the record and click the edit icon at the bottom and I get now fields listed in the popup.
I have some longer text fields which I wanted to keep out of the main list, so they are hidden, with:
$col["hidden"] = true;
$col["editrules"] = array("edithidden"=>true);
All other fields are defined like :
$col = array();
$col["title"] = "Status";
$col["name"] = "Status";
$col["width"] = "10";
$cols[] = $col;
Any idea what I might be doing wrong?