Hi Abu,
I am trying the column access demo. I am trying the inline edit. When I double click the row, it is editable. But When I click on any of the editable field, I see the values are adding(getting concatenated) in the non editable column. In this case it is Gender.
One more question:
I want to have the fields non-editable in the inline edit and these non-editable fields should be available when I add a new record through inline add. Please let me know if there is a way to do it.
Thanks,
Sri
For Q1:
I am unable to generate such case. If you can send some screenshot of error & the code, it would help.
You can email me at [email protected]
For Q2:
You can put readonly in edit options. It will remain editable in add.
$col["editrules"] = array("readonly"=>true);
Hello,
Thanks for identifying this issue.
It's fixed now in latest build. In jqgrid_dist.php
replace
$str_inline_access .= 'jQuery("'.$tag.'[name='.$c["index"].']:last").parent().append("<span></span>");';
with
$str_inline_access .= 'jQuery("'.$tag.'[name='.$c["index"].']:last").parent().not(":has(span)").append("<span></span>");';