In free jqgrid inline edit of row is started using single click in row in beforeSelectRow
event.
So inline edit button in actions column is not needed.
I tried to remove it by setting editbutton = false
in formatoptions:
cm= [{
"name":"_actions",
"template":"actions",
"formatoptions":{"editbutton":false,
"delbutton":true,
"delOptions":{"url":"Delete",
"afterComplete":function (response, postdata, formid) {
$grid[0].focus();
}
}}}
In this case save and cancel buttons also do not appear in actions column during inline edit. Actions column is empty on inline edit.
How to enable save and cancel action buttons if edit action button is disabled ?