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

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

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

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

當(dāng)單擊下一頁(上一頁)時(shí)帶參數(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)文章

最新評論