Ext textTield 和Combox联动下拉

来源:百度知道 编辑:UC知道 时间:2024/09/26 04:38:57
要实现从文本框中录入数据,作为查询条件,查询出combox的下拉

var text,combo;
初始化过程自己写
text.on('change',function(){
combo.store.baseParams={text:text.getValue()};
combo.reload();
})

怎么了 没有代码嘛 难道要我们给你做好