照着官方的example做出来一个local的,但是发现一个问题,过滤的条件只能是在当前页,就是说比如每页最大值是20条信息,一共40条信息,但是如果我查询第23条的ID,是空的,或者更准确的说第一页是空的,但是第二页里是这条信息是被过滤显示出来了的,这是什么问题?正常情况来讲这条信息应该要被过滤出来后显示在第一页里面才对吧?
之后尝试了一下改为remote的方式,但是连基本的过滤功能都没有了,网上也及基本查不到资料~
所以问问大神们~首先用local这个方式为什么出现这个问题?如果local不行,remote的话要怎么写呢?
附上代码~:
//Filter
var filters = {
ftype : 'filters',
encode : false, // json encode the filter query
local : true
};
//Store
var UserStore = Ext.create('Ext.data.Store', {
autoLoad : false,
model : 'User',
pageSize : 20,// 分页大小
proxy : {
type : 'ajax',
url : 'userList.action',
reader : {
type : 'json',
root : 'userList',
totalProperty : 'totalProperty'
}
}
});
UserStore.load({
params : {
start : 0,
limit : 20
}
});
//Grid
var userGrid = new Ext.grid.Panel({
features : [filters],
store : UserStore,
....colums略