ExtJS4 中 setValue 的问题


ExtJS 4.2.1


 {
    xtype: 'textfield',
    emptyText: '标题',
    id: 'tf11',
    name: 'title',
    width: '100%',
    anchor: '100%',
    fieldLabel: '标题',
    hideLabel: true,
    allowBlank: false
}

这是我的textfield,我想做的只是手动设定其里面的内容,


 Ext.getCmp('tf11').setValue('123');

可是执行上面这条语句并不见效果,但是能看到
the result

为什么setValue没效果,有人碰到过吗,如何解决?

extjs4 JavaScript

极杀兵器绯蜂改 10 years, 10 months ago

Your Answer