I can double click on any cell, make an edit and save it by hitting the enter key on page one. On any other page when I hit enter after making the edit, it acts like a return key and creates a new line instead of saving the cell. What setting controls this?
var obj = {
width: 700, height: 0,
dataModel: dataModel,
colModel: colModel,
columnBorders: true,
flexHeight: true,
flexWidth: true,
paging: true,
scrollModel: { horizontal: false },
freezeCols: 0,
editModel: { clicksToEdit: 2, saveKey: 13 },
cellSave: function (event, ui) {
jsonstring = { "ID": ui.data[row].ID, "FiscalYear": ui.data[row].FiscalYear };
Update(JSON.stringify(jsonstring));
},