I have a data source similar to the following (assuming no typos):
var data = [
{ label: “Item 1“, description: “Description”, items: [
{ label: “Item 1.1“, description: “Description” },
{ label: “Item 1.2“, description: “Description” }
]
},
{ label: “Item 2“, description: “Description” },
{ label: “Item 3“, description: “Description” },
{ label: “Item 4“, description: “Description”, items: [
{ label: “Item 4.1“, description: “Description” },
{ label: “Item 4.2“, description: “Description” }
]
},
{ label: “Item 5“, description: “Description” },
{ label: “Item 6“, description: “Description” },
{ label: “Item 7“, description: “Description” }
];
I pass this data into .jqxTree as the source. Is there a way to add tooltips to each item of the tree to show the Description?