RemoteSort is working well but special characters with paging grid.
Here is testing code and screenshot.
Any advise is welcome. Thanks.
Code:
Ext.onReady(function(){
var store = new Ext.data.Store({
remoteSort : true,
reader: new Ext.data.XmlReader({
record: 'Item'
}, [{
name: 'Author',
mapping: 'Author'
},{
name : 'Title',
type: 'string',
mapping : 'Title'
}])
});
var pagingBar = new Ext.PagingToolbar({
pageSize: 7,
store: store,
displayInfo: true,
displayMsg: 'Displaying setups {0} - {1} of {2}',
emptyMsg: "No setups to display"
});
var grid = new Ext.grid.GridPanel({
store: store,
columns: [{
header: "Author",
width: 150,
dataIndex: 'Author',
sortable: true
},{
header: "Title",
width: 180,
dataIndex: 'Title',
sortable: true
}],
bbar: pagingBar,
renderTo:'example-grid',
width:355,
height:200
});
Ext.Ajax.request({
url: 'sheldon.xml',
method: 'GET',
success : function( r ){
store.proxy = new Ext.data.PagingMemoryProxy(r.responseXML);
store.load({
params:{
start: 0,
limit: pagingBar.pageSize
}
});
}
});
});