Extjs - Setvalue到组合内的数字字段

时间:2013-07-12 03:37:51

标签: extjs combobox extjs4 extjs4.1

我有一个像 http://jsfiddle.net/FZfCC/

的窗口

enter image description here

我想在组合框( a1 )的功能中将setValue(myvalue)设置为字段 a2 ,如

            listeners: {
                render: function(combo) {
                     Ext.getCmp('a2').setValue(0); // not working
                }
            }

但那不起作用。我该如何解决这个问题

1 个答案:

答案 0 :(得分:0)

使用beforeRender

            beforeRender: function(combo) {
                 Ext.getCmp('a2').setValue(0);
            }

现在应该可以了。