欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

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

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

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

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});//載入
}

相關文章

最新評論