Categories | Question details Back To List | ||
Tooltip in Tree In a tree, i have both image and Text to be displayed, from the server side code, we are setting the custom tool tip text for the node, which should be applied to text only, when we mouse over the image , the tool tip is showing. how to handle this. Answer posted by Alex (support) on Oct 26, 2009 07:41 Hello, tooltip is set for the whole row (including icons). But you can place html element as the item text. Fr example it can be span with title attribute: Answer posted by Manoj Babu on Oct 26, 2009 23:00 Thanks for your valuable reply. But hope you did not understood my doubt. All i need is to show tool tip for text only not for image. Thanks A ton in advance. Answer posted by Alex (support) on Oct 27, 2009 03:13 Hello, It seems that I understood your question correctly. Tree consits of tables. There are rows (tr) and cells (td). The tooltip is set for the whole row (tr element) that includes icons and text. If you want to set title only for the text, you should use html inside item label instead of "tooltip" attribute: <item id="some_id"><itemtext><span title="custom tooltip">Item Label Here</span></itemtext></item> |