예: 첫 번째 페이지를 로드할 때
코드:
store.load({params:{start:0,limit:pageSize,Keyword:Ext.getCmp('input_name').getValue()}})
클릭 시 매개변수가 있는 다음 페이지(이전 페이지)
doLoad : 함수(시작){
record_start = start;
var o = {}, pn = this.paramNames;
o[pn.start] = start; this.pageSize;
var 키워드=Ext.getCmp('input_name').getValue(); //매개변수 가져오기
o['Keyword'] = 키워드;//매개변수 쓰기
로드({params:o});//로드 중
}