Reputation: 1191
I have a tree of nodes and each node has its own icon. what I want to do is to add a tooltip for each node's icon. In fact, using qtip will add a tooltip to the whole node (node row) and it is not what i need. So is it possible to do that in somehow?
Thanks,
Upvotes: 0
Views: 133
Reputation: 1851
You should implement it in a similar way as it is done in this example.
Set a respective .Delegate for a ToolTip.
Define a custom attribute in a Node's CustomAttributes that contains a tooltip text for the icon and show that in a ToolTip's onShow.
Upvotes: 1