You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
Any plans the implement server side saving of edited rows?
We needed this for our project using php and polymer. We implemented this by adding, in our case, the following lines to extjs-ajax.html :
var tableToJson = (this.data ? JSON.stringify(this.data) : "'');
var params = {
_dc: (new Date).getTime(),
page: 0,
start: this.start,
table: tableToJson
};
this.ajax.method = 'POST';
and adding a function to sortable-table.html to trigger on a button click :
saveTable: function(){ this.dataSource.go(); },
This way we can save the edited table in php without losing pagination, sorting, etc...
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Any plans the implement server side saving of edited rows?
We needed this for our project using php and polymer. We implemented this by adding, in our case, the following lines to extjs-ajax.html :
var tableToJson = (this.data ? JSON.stringify(this.data) : "'');
var params = {
_dc: (new Date).getTime(),
page: 0,
start: this.start,
table: tableToJson
};
this.ajax.method = 'POST';
and adding a function to sortable-table.html to trigger on a button click :
saveTable: function(){ this.dataSource.go(); },
This way we can save the edited table in php without losing pagination, sorting, etc...
The text was updated successfully, but these errors were encountered: