I need to combine the splitter, tree and tab controls in a way that I can’t find a demo for.
The splitter will contain an XML-populated tree on the left side, and a content area on the right. When an item in the tree is clicked, I need a new tab to open in the content area, displaying the appropriate data.
I’ve set up my tree and splitter on a base page, but I have some questions about integrating the tabs. I’ve figured out how to get the clicked item label (var item = $(‘#navTree’).jqxTree(‘getItem’, args.element); var treeLabel = item.label;), but I can’t figure out how to get the ID from the XML. I was hoping there would be something similar to the grid functionality ($(“#viewUsersGrid”).jqxGrid(‘getrowdata’, row)).ID), but if there is, I haven’t stumbled across it.