There is also a slightly simpler solution:
...
columns: [{
header: 'Name',
dataIndex: 'Name',
sortable: true,
getSortParam: function () {
return 'SortOrder';
}
...
}]
...
So instead of overriding doSort (), you can simply override the getSortParam () method (which is used by doSort ()).
Arshak
source share