Hi,
I'm trying to put html text into a button. I've subclassed a button
component, and tried to
modify the internal textfield as in the docs it says that the textfield
is the internal textfield that
the label works with.
I try:
this.textField.text = this.category.getId();
this.textField.htmlText = this.category.getId();
And nothing happens.
I do
this.label = this.category.getId()
and everything shows up fine.
Anyone have a clue? Is the internalTextfield for a button not really
affect the label of a button?
- Austin