Ext JS 4. x 임의의 구성 요 소 를 ComboBox 의 드 롭 다운 상자 에 넣 습 니 다.예 를 들 어 tree, grid 등.

935 단어 EXTJS
[url] 로 이동http://www.uniorder.com/2013/10/24/ext-js-4-x-%E5%9C%A8%E4%B8%8B%E6%8B%89%E6%A1%86%E4%B8%AD%E6%94%BE%E5%85%A5- tree / [/ url] 업데이트 내용 보기

Ext.define("GB.view.AddressCombo", {
extend : "Ext.form.field.Picker",
alias : "widget.addressCombo",
createPicker : function() {
var me = this, p = Ext.create('GB.view.ProvinceContainer', {
hidden : true,
floating : true,
listeners : {
"accept" : function(str) {
me.setValue(str);
me.collapse();
},
"cancel" : function() {
me.collapse();
}
}
});
return p;
},
collapseIf : Ext.emptyFn
});

구성 요소 에 combobox 가 포함 되 어 있다 면, collapseIf 를 빈 상태 로 설정 해 야 합 니 다.다음 효과 그림:
[img]http://dl.iteye.com/upload/attachment/0078/6179/1bd17e98-2e10-30fc-8085-de25a7b4c941.png[/img]

좋은 웹페이지 즐겨찾기