当前位置: 代码迷 >> Web前端 >> ext 在FormPanel中创建上拉列表的两种方式
  详细解决方案

ext 在FormPanel中创建上拉列表的两种方式

热度:262   发布时间:2012-11-03 10:57:44.0
ext 在FormPanel中创建下拉列表的两种方式
1.在FormPanel的Items中
items:[{
	xtype : 'combo',
	fieldLabel: "对象",   
	hiddenName: "active",
	displayField: "object",   
	mode: "local",
	width : 50
}]


2.在FormPanel的Items中
items:[new Ext.form.ComboBox({   
	fieldLabel: "对象",   
	hiddenName: "active",   
	displayField: "object",   
	mode: "local",
	width:110
})]


黑色头发:http://heisetoufa.iteye.com/
1 楼 老汉学编程 2010-12-21  
Ext3.2.1  combobox加载remote json数据时,如何做到显示值和实际值都存在!