Fragment: Failed to change hyperlink text
Hi,
On header fragment, I have some Hyperlinks and StaticTexts. On some action I want to change hyperlink's text.
I am using code
someHyperLink.setText("New Text");
This doesn't seem to have any effect.
However, these works fine
someStaticText.setText("new text");
someHyperLink.setVisible(false);
Though if link is on a page instead on a fragment, I am able to change its text programmatically.
Any idea whats I am doing wrong or some bug?
Thanks.

