`
liuxi1024
  • 浏览: 384931 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Extjs grid带分页的查询

阅读更多

1、先按条件查询数据,再点下一页保留住查询条件,解决方案是将查询参数放入到store.baseParam中

store: new Ext.data.JsonStore({
			storeId: 'in_grid_store',
			pageSize: 20,
			totalProperty: 'totalCount',
			remoteSort: true,
			url: 'incoming/list.do',
			root: 'incomings',
			listeners :{
				beforeload :{
					fn : function(thiz,options){
						Ext.apply(thiz.baseParams, Ext.getCmp('in-query-form').form.getValues()); 
					}
				}
			},
			fields: ['id', 'batch', 'customer', {name:'pigCount', type: 'int'}, 'createDate','status']
		}),
 

function beforeload() 即将Form表单中的参数放入store.baseParam中

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics