I just need to find a way to use enter as submit not advanced to next cell.
Hi Seang,
The igGridUpdating does not expose option to disable/enable (tab/enter) triggers to start editing of next cell.
Application may process editCellStarting event, check for "ENTER key" trigger and cancel that event. Below is example:
$('#grid').igGrid({ ...
features: [{ name: "Updating", // editMode: "cell", editCellStarting: function (evt, ui) { if (evt.keyCode === 13) { //document.forms[0].submit(); return false; } } }]
});
ok that is working, thx.