Hello,
I have a grid that contains checkbox column. I would like ONLY the rows that are check-marked to be editable; unchecked, they should revert to
being not editable.
I believe the entire grid should be set to editable:false and then only set the selected row (index) be set to editable – something like this?
$(‘#jqxgrid’).jqxGrid({ editable: true });
$(‘#jqxgrid’).jqxGrid({ editable: false });
My question is how to turn the edit on and off for the currently selected/unselected row?
Any guidance is appreciated.
Thank you!
Rob