Reputation: 4884
I'm using a Qooxdoo table widget attached to a remote model.
Reading remote data into the table worked like charm, but since the table has some editable column, the problem is: how do I instruct the model to write those changed data to the server?
The model is defined by the book, overriding the _loadRowData
and _loadRowCount
methods, attached to the related *Completed
handlers, just like it is described into this page.
Thanks
Upvotes: 0
Views: 361
Reputation: 2807
From what I know, the Remote model doesn't provide a way to communicate changes back to the server. Instead, you can listen for the table's "dataEdited" event. Just how you send the changes to the server of course depends on the type of backend you're using.
Upvotes: 2