I am using Kendo Tree View in Windows 7 and IE-8 inside Kendo Splitter control. We have load on demand implemented which will load data/child nodes on expanding each node. How can I set “Tool Tip” to each node of this Kendo tree view.
1 Answer, 1 is accepted
0
Petur Subev
Telerik team
answered on 01 Mar 2013, 12:32 PM
Hello Anish,
I posted a replay in the support ticket that you opened. For reference I will paste it here too.
Feel free to continue the conversation here or in the support ticket.
----------------------------------------------------------------------------------------------------------------------------------------------
It depends how exactly you add the items to the TreeView.
Basically to add a tooltip you should use the title HTML attribute to the node.
e.g.
Copy Code
.Items(images =>
{
images.Add().Text("logo.png")
.HtmlAttributes(new { title="Fooo"})
If binding to Model via Ajax you will need to create template: