熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

Ext中下拉列表ComboBox組件store數據格式用法介紹

2022-06-13   來源: JSP教程 
本文為大家詳細介紹下Ext中下拉列表ComboBox組件store數據格式的基本用法感興趣的朋友可以參考下哈希望對大家有所幫助   復制代碼 代碼如下:
var p_years = new ExtformComboBox( {
fieldLabel : 統計年份
anchor : anchor_w
mode : remote
maxHeight:
triggerAction : all
selectOnFocus : true
forceSelection : true
editable : false
//store :[[ ] [ ][ ]] //此為第一種
store:[] //此為第二種當沒有制定value和text的時候默認提交值與顯示值為同一個
});
在該組件中可以直接手寫數組格式[ [ valueText ] [ ][ ] ]進行構建提交值是前者後者作為顯示值
下面是比較正規用法從數據庫同步數據字典渲染comboBox組件
復制代碼 代碼如下:
var proj_main_store = new ExtdataJsonStore({
url : "************"
fields : [TEXT VALUE]
root : "objs"
baseParams : {
"obj/dicttypeid" : "BM_IMPORTANT_PROJ"
}
});
proj_main_storeaddListener("load" function(){
proj_main_storeinsert( new ExtdataRecord({
TEXT : 全部
VALUE : ""
}));
});
var proj_main_type = new ExtformComboBox( {
fieldLabel : 重點工程
anchor : anchor_w
mode : remote
triggerAction : all
selectOnFocus : true
forceSelection : true
editable : false
valueField : VALUE
displayField : TEXT
store : proj_main_store
});  
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20086.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.