我有一个面板
var filterPanel = Ext.create('Ext.panel.Panel', {
bodyPadding: 5,
width: 300,
myValue:5,
title: 'Filters',
initComponent: function() {
this.items = [{
xtype: 'textfield',
value: this.myValue
}];
this.callParent();
}
renderTo: Ext.getBody()
});
我尝试创建一个项目,xtype: 'textfield'
并且价值是myValue
面板。但那是失败的。
怎么做谢谢。这是我的示例文本http://jsfiddle.net/4Cmuk/