当我试图打开它然后排序工作时,我遇到了 RemoteSorting 的问题。当我不打开它时,我可以排序,但只能在网格中显示数据,而不是所有来自基础的数据。
有人看到有什么问题吗?请帮助它的重要
var contact = Ext.data.Record.create([
{name: 'ID', mapping: 'ID'},
{name: 'Name', mapping: 'Name'},
{name: 'LastName', mapping: 'LastName'}
])
var store = new Ext.data.Store({
remoteSort: true,
proxy: new Ext.data.HttpProxy({
url: '../../Users/Info',
dataType: 'json',
method: 'GET',
headers: { "Content-Type": "application/json; charset=utf-8" }
}),
reader: new Ext.data.JsonReader({
root: 'data',
dataType: 'json',
idProperty: 'prodID',
totalProperty: 'totalCount'
},
ProductsType
),
writer: new Ext.data.JsonWriter({
encode: false,
listful: true,
writeAllFields: true
})
});
})