How to change text dynamically on Ext.draw.Text element?
this.textLabel = Ext.create "Ext.draw.Text"
type : 'text',
text : me.curValue,
font : '24px Arial',
width : 100,
height: 30,
x : 100
y : 120
This method doesn't work:
this.textLabel.setText("new text")
How can I do that?