如何在 Ext.draw.Text 元素上动态更改文本?
this.textLabel = Ext.create "Ext.draw.Text"
type : 'text',
text : me.curValue,
font : '24px Arial',
width : 100,
height: 30,
x : 100
y : 120
此方法不起作用:
this.textLabel.setText("new text")
我怎样才能做到这一点?