This is a migrated thread and some comments may be shown as answers.

set_Text doesn't work after show

1 Answer 78 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Anders Mad.
Top achievements
Rank 2
Anders Mad. asked on 30 Jan 2008, 08:20 PM

The set_Text(str) on tooltip only works before created. I had to write the code like this:

var temp = toolTip.get_contentElement();

if (temp)
 
temp.innerText = tip;
else
 
toolTip.set_Text(tip);

I would suggest that toolTip.set_Text works after content is created.

Thank you.

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 04 Feb 2008, 08:54 AM
Hello Anders Madsen,
We are aware of this problem and it is on our TODO list for Q1. For the time being, we offer to our customers the workaround you yourself have implemented.

All the best,
Tsvetie
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
ToolTip
Asked by
Anders Mad.
Top achievements
Rank 2
Answers by
Tsvetie
Telerik team
Share this question
or