I have an EditorGridPanel in Ext JS 3.0, populated via HttpProxy and JsonReader, and I have an editable column "working"--I can edit the value and it flags it as dirty.
Now, how do I get it to, after a cell has been edited, send an XmlHttpRequest to the server with a few base parameters, the row's ID field, the name of the column changed, and the new value?
Once the request has been made, the server-side update is easy. But no amount of Google and digging through the trivial in-memory EditGridPanel examples is helping with getting the EditGridPanel to make the call.
What I'm not looking for:
- REST--just update via normal GET or POST
- Insert new records, or delete rows--updates only for now.
- Batch updates--just one cell edit at a time.
- A bunch of code--this should be trivial, like the Ajax.InPlaceEditor in Scriptaculous