jQuery Tree with Single Click Expand/Collapse

In order to make the jqxTree’s items to expand/collapse when the user clicks on an item, you need to set the ‘toggleMode’ property to ‘click’ Code Example: var source = [ { label: “Mail”, expanded: true, items: [ { label: … Continue reading
jQuery, jQuery Plugins, jQuery UI, jqxTree
, , , , , , ,

Leave a comment

Load Tree Items with Ajax

In this post, we will show you how to load jqxTree Items on demand. The tree items that we are going to load are located in 2 different files – ajax1.htm and ajax2.htm. ajax1.htm [{“label”: “Folder 1” },{“label”: “Folder 2” … Continue reading
jQuery, jQuery Widgets, jqxTree
, , , , , , , , , , , , , ,

Leave a comment

Displaying HTML in Tree nodes

It’s easy to display HTML instead of simple Text in the Tree nodes. You just need to set a HTML string to the label member as illustrated in the code below: var data = [ { label: "<b>Item 1</b>", expanded: … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxTree
, , , , , , , , , , , , , , ,

Leave a comment