Skip to content
Snippets Groups Projects
Commit c39563b1 authored by legac's avatar legac
Browse files

Add the logic to sort the grid content remotely when remoteAction is

true.
parent 11823acf
No related branches found
No related tags found
No related merge requests found
......@@ -43,11 +43,18 @@ Ext.define('App.grid.Panel', {
// At that step the plugins are not yet instantiate.
// Thus wait the last moment.
this.on('beforerender', this.onBeforeRender, this);
// Reload he store when sort condition changed and
// when the remoteAction is true
this.on('sortchange', this.onSort, this);
},
// Private method requires by the Ext JS component model
beforeDestroy: function () {
this.un('beforerender', this.onBeforeRender, this);
this.un('sortchange', this.onSort, this);
// reset the store
this.reset();
......@@ -95,5 +102,24 @@ Ext.define('App.grid.Panel', {
store.clearFilter();
store.filter();
}
},
/**
* Reload the store applying sort condition selected by the user.
* Do nothing when #remoteAction is false.
*
* @param {Ext.grid.header.Container} ct
* @param {Ext.grid.column.Column} column
* @param {String} direction
* @param {Object} eOpts
*
*/
onSort: function (ct, column, direction, eOpts) {
"use strict";
if (this.remoteAction) {
this.getStore().loadPage(1);
}
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment