Shyam,
We have sent the latest source js to you that gives you an option to enable editing on single click. Here is the code usage,
$table.gridEditor({
canBeginEdit: function (actview) {
// To use single click edit.
if (condition)
return true;
// To use the Default behavior.
return actview.IsSelected();
},
start: function (event, ui) {
//return false; /*To prevent default action, default action, set the value to the textbox base on column name*/
},
submit: function (event, ui) {
// return false; to discard changes.
}
});
Regards,
-Raja.