Ext二级联动下拉框
2009-09-09 00:00:00 来源:WEB开发网Js代码
combobox的二级联动实现:
{
xtype : 'combo',
id : 'combo1',
emptyText : '请选择...',
typeAhead : true,
triggerAction : 'all',
lazyRender : true,
mode : 'local',
store : store1,
valueField : 'value',
displayField : 'displayText',
width : 80,
editable : false,
listeners : {
select : function(combo, record, index) {
if (index == 0) {//
combo2.setDisabled(true);
combo2.clearValue();//
} else {
combo2.setDisabled(false);
if (index == 1) {//
combo2.clearValue();
combo2.store.loadData([week);
} else {//
combo2.clearValue();
combo2.store.loadData(month);;
}
}
}
}, {
xtype : 'combo',
id : 'combo2',
emptyText : '请选择...',
typeAhead : true,
triggerAction : 'all',
lazyRender : true,
mode : 'local',
store : new Ext.data.SimpleStore(
{
data : [],
fields : ['value', 'displayText']
}),
valueField : 'value',
displayField : 'displayText',
width : 80,
editable : false,
disabled : true
}
- ››ExternalInterface.addCallback()方法,as2和as3的...
- ››ExternalInterface.call和addCallback测试
- ››ExtJs Grid 合计 [Ext | GridPanel | GridSummary...
- ››EXT调用ASP.NET AJAX WebService
- ››ExtJS中如何扩展自定义的类
- ››联动与整合 企业反垃圾邮件重在管理
- ››Extjs列表详细信息窗口新建后自动加载解决方法
- ››extjs学习笔记(一) 一些基础知识
- ››EXT EditorGridPanel 中用复选框表示真假值,扩展官...
- ››ExtJS 3.0 图片浏览程序
- ››ExtJS 技巧笔记
- ››ExtJS 2.2 开源网络硬盘系统
更多精彩
赞助商链接