Hi,
I need to display a tooltip for KendoTreeView when hovered over the checkbox.
HTML
<
div
class
=
"demo-section k-content"
>
<
div
>
<
div
id
=
"treeview"
></
div
>
</
div
>
</
div
>
JavaScript
ruleNames = [{ text: "Rule 1", description: "Rule 1 Hovered upon" },
{ text: "Rule 2", description: "Rule 2 Hovered upon" }]
$("#treeview").kendoTreeView({
checkboxes: {
checkChildren: true
},
check: function (e) {
onCheck(pass);
},
dataSource: [{ text: "List of Rules", expanded: false, items: ruleNames }]
});
I want to display the description text on the tooltip.
Please could your help me out with a demo.
Thanks in advance