I have a GridPanel editor in Ext JS 3.0 populated through HttpProxy and JsonReader, and I have an editable "working" column - I can edit the value and it marks it as dirty.
Now, how do I get, after the cell has been edited, send the XmlHttpRequest to the server with a few basic parameters, a row id field, column name and new value?
After the request has been made, server-side upgrade is easy. But no amount of Google and delving into the trivial EditGridPanel examples in memory helps get an EditGridPanel call.
What I'm not looking for:
- REST - just update via regular GET or POST
- Insert new records or delete rows - updates only now.
- Batch updates - only one cell edit at a time.
- Letter of code - this should be trivial, like Ajax.InPlaceEditor in Scriptaculous
source
share