Hi,
If I configure the grid to be in default Edit style, can I make some columns non-editable?
Thanks,
Sri
1 Answers
For that column, simply set:
$col["editable"] = false;
Refer demos/editing/default-edit.php and turn check by setting it.
$col = array();
$col["title"] = "Date";
$col["name"] = "invdate";
$col["width"] = "50";
$col["editable"] = false;
$col["editoptions"] = array("size"=>20); // with default display of textbox with size 20
$cols[] = $col;
Your Answer