亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ExtJS 工具欄 分頁事件參數(shù)

 更新時間:2010年03月05日 16:42:29   作者:  
ExtJS 工具欄 分頁事件參數(shù)使用說明。
例如:載入第一頁的時候
代碼:
復(fù)制代碼 代碼如下:

store.load({params:{start:0,limit:pageSize,Keyword:Ext.getCmp('input_name').getValue()}});

當(dāng)單擊下一頁(上一頁)時帶參數(shù)
復(fù)制代碼 代碼如下:

doLoad : function(start){
record_start = start;
var o = {}, pn = this.paramNames;
o[pn.start] = start;
o[pn.limit] = this.pageSize;
var Keyword=Ext.getCmp('input_name').getValue(); //獲取參數(shù)
o['Keyword'] = Keyword ;//參數(shù)寫入
this.store.load({params:o});//載入
}

相關(guān)文章

最新評論