欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于EXT的combobox

程序员文章站 2022-07-13 22:49:54
...
在做项目时发现ComboBox里的输入值,后台取不到。google一把找到了。记录下具体做法。


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);
});