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

Tree Navigation with Splitter

In this post, we’ll create a simple Navigation with the jqxTree and jqxSplitter widgets. When the user selects a tree item, a content panel will be updated depending on the selected item. 1. Include the JavaScript and CSS files. <link … Continue reading
jQuery, jQuery Plugins, jqxSplitter, jqxTree
, , , , , , , , , , , , , , , , , , ,

Leave a comment

How to Use Cookies to Save and Load jqxTree Selection

In this post, we’ll create a jqxTree widget and will save its selection when a button is clicked in a cookie. After the page is reloaded, we’ll check the cookie for a stored tree item and will select it. 1. … Continue reading
JavaScript, JavaScript Plugins, JavaScript UI, JavaScript UI Plugins, JavaScript UI Widgets, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxTree
, , , , , , , , , , , , , , , , , , , , ,

Leave a comment

jQuery Tree with Context Menu

In this post, we will Add and Remove Tree Items by using a Context Menu. When the user right clicks on a Tree Item, a Context Menu with ‘Add Item’ and ‘Remove Item’ menu items will be displayed. The ‘Add … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxMenu, jqxTree
, , , , , , , , , , , , , , , , , , , , , , , , , ,

2 Comments

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

jQuery Tree with Checkboxes

Today, we will show you how to add a jQuery Tree with Checkboxes to your web page. The first step is to include the javascript files. The jquery framework and jqxcore.js should be always included when you want to use … Continue reading
JavaScript, JavaScript Plugins, JavaScript Widgets, jQuery, jQuery Plugins, jQuery UI, jQuery UI Plugins, jQuery UI Widgets, jQuery Widgets, jQWidgets, jqxButton, jqxScrollBar, jqxTree
, , , , , , , , , , , , , , , , ,

Leave a comment

Populating jQuery Tree with JSON data

In this post we will show you how to populate the jqxTree with JSON data. The data object below contains an array of objects, each containing “id”, “parentid”, and “text” members. var data = [ { "text": "Chocolate Beverage", "id": … 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