The documentation here is not very clear:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing&s%5B%5D=editurl#saverow
Do I have to manually make a saveRow call after the user finishes editing a table cell/row, or will jqGrid automatically trigger saveRow when the row (cell?) loses focus?
I’m giving jqGrid a editurl value in the initial setup, but I don’t see any ajax requests going out when I finish editing a row.
You have two options:
keys: true. In the case the method saveRow will be called if the user press Enter and the method restoreRow will be called if the user press Esc. In the case you don’t need to call saveRow explicitly. Inside of onSelectRow one calls typically restoreRow see here an example.