I have created a grid with about 35 columns. If i will adding a new row i can not see some rows at the beginning. please see attachements.
The browser does not matter same in IE and chrome.
I have the paid version.
Thanks
Patrick
1 Answers
You can use position fields in 2,3 or 4 columns and make the editing dialog wider.
Refer example dialog-layout.php in your package.
e.g.
$opt["edit_options"]["width"] = "600";
$g->set_options($opt);
and
$col = array();
$col["title"] = "Name"; // caption of column
$col["name"] = "name";
$col["editable"] = true;
$col["formoptions"] = array("rowpos"=>"3", "colpos"=>"2"); // put this field in row 3 and col 2
$col["editoptions"] = array("tabindex"=>"102");
$cols[] = $col;
Your Answer