Ext 에서 드 롭 다운 목록 ComboBox 구성 요소 store 데이터 형식 용법 소개
var p_years = new Ext.form.ComboBox( {
fieldLabel : ' ',
anchor : anchor_w,
mode : 'remote',
maxHeight:100,
triggerAction : 'all',
selectOnFocus : true,
forceSelection : true,
editable : false,
//store :[['11', '2011'], ['12', '2012'],['13', '2013']] //
store:[2011,2012,2013,2014,2015,2016,2017,2018] // , value text , 。
});
이 구성 요소 에서 직접 손 으로 배열 형식[[value','text'],[],[]]를 구축 할 수 있 습 니 다.제출 값 은 전자 이 고 후 자 는 표시 값 입 니 다.다음은 데이터베이스 동기 화 데이터 사전 렌 더 링 combo Box 구성 요소
var proj_main_store = new Ext.data.JsonStore({
url : "************",
fields : ['TEXT', 'VALUE'],
root : "objs",
baseParams : {
"obj/dicttypeid" : "BM_IMPORTANT_PROJ"
}
});
proj_main_store.addListener("load", function(){
proj_main_store.insert(0, new Ext.data.Record({
'TEXT' : ' ',
'VALUE' : ""
}));
});
var proj_main_type = new Ext.form.ComboBox( {
fieldLabel : ' ',
anchor : anchor_w,
mode : 'remote',
triggerAction : 'all',
selectOnFocus : true,
forceSelection : true,
editable : false,
valueField : 'VALUE',
displayField : 'TEXT',
store : proj_main_store
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python tkinter 의 ComboBox(드 롭 다운 상자)사용 안내1.ComboBox 의 기본 속성 2,귀속 선택 이벤트 이상 은 Python tkinter 의 ComboBox(드 롭 다운 상자)사용 프로필 에 대한 상세 한 내용 입 니 다.Python tkinter 의 Combo...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.