关于EXT的combobox
程序员文章站
2022-07-13 22:49:54
...
在做项目时发现ComboBox里的输入值,后台取不到。google一把找到了。记录下具体做法。
方法1.[url]http://www.iteye.com/problems/475[/url]
方法2:[url]http://hi.baidu.com/flying_all/blog/item/426443d7b8b442dba144df9e.html[/url]
var cb=new Ext.form.ComboBox({
triggerAction: 'all',
transform:'group',
width:272
});
方法1.[url]http://www.iteye.com/problems/475[/url]
cb.on('blur',function(){
this.setValue(this.el.dom.value);
});
方法2:[url]http://hi.baidu.com/flying_all/blog/item/426443d7b8b442dba144df9e.html[/url]
cb.on('keydown', function(e){
this.setValue(this.el.dom.value);
});