JqxTree: Difference between revisions
Jump to navigation
Jump to search
Created page with "file:jqxTree.png == Description == The Grid is a powerful jQuery widget that displays tabular data. It offers rich support for interacting with data, including paging, gr..." |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
== Description == | == Description == | ||
jqxTree represents a jQuery Tree widget that displays a hierarchical collection of items. You can populate it from 'UL' or by using its 'source' property. | |||
jqWidgets is a commercial product, which depending on how you use it, requires a license fee. Complete details are on jqWidget's website. The product is well supported. | |||
== Properties and Methods == | == Properties and Methods == | ||
This control is well documented on the jqWidget's website: http://www.jqwidgets.com/jquery-widgets-documentation/. | |||
http://www.jqwidgets.com/jquery-widgets-documentation/ | |||
== Example == | == Example == | ||
<pre> | <pre> | ||
Sub Main() | |||
$("#Tree1").jqxTree(Tree1_settings) | |||
End Sub | |||
Function Tree1_onselect(event) | |||
menuItemText=$(event.args.element).text() | |||
console.log(menuItemText) | |||
{ | End Function | ||
{ | |||
source = [ _ | |||
{ | { icon: "images/mailIcon.png", label: "Mail", expanded: True, items: [ _ | ||
{ | { icon: "images/calendarIcon.png", label: "Calendar" }, _ | ||
{ icon: "images/contactsIcon.png", label: "Contacts", selected: True } _ | |||
]}, _ | |||
{ icon: "images/folder.png", label: "Inbox", expanded: True, items: [ _ | |||
{ icon: "images/folder.png", label: "Admin" }, _ | |||
{ icon: "images/folder.png", label: "Corporate" }, _ | |||
{ icon: "images/folder.png", label: "Finance" }, _ | |||
{ icon: "images/folder.png", label: "Support" }, _ | |||
{ icon: "images/folder.png", label: "Drafts" }, _ | |||
{ icon: "images/folder.png", label: "Other" }, _ | |||
]}, _ | |||
{ icon: "images/notesIcon.png", label: "Notes" }, _ | |||
{ iconsize: 14, icon: "images/settings.png", label: "Settings" }, _ | |||
{ icon: "images/favorites.png", label: "Favorites" }, _ | |||
] | ] | ||
Tree1_settings.source=source | |||
</pre> | </pre> | ||
== Output == | == Output == | ||
See above. | |||
[[Category:Language Reference]] | |||
[[Category:jqWidgets]] | |||
[[Category:Controls]] |
Latest revision as of 17:20, 7 April 2016
Description
jqxTree represents a jQuery Tree widget that displays a hierarchical collection of items. You can populate it from 'UL' or by using its 'source' property.
jqWidgets is a commercial product, which depending on how you use it, requires a license fee. Complete details are on jqWidget's website. The product is well supported.
Properties and Methods
This control is well documented on the jqWidget's website: http://www.jqwidgets.com/jquery-widgets-documentation/.
Example
Sub Main() $("#Tree1").jqxTree(Tree1_settings) End Sub Function Tree1_onselect(event) menuItemText=$(event.args.element).text() console.log(menuItemText) End Function source = [ _ { icon: "images/mailIcon.png", label: "Mail", expanded: True, items: [ _ { icon: "images/calendarIcon.png", label: "Calendar" }, _ { icon: "images/contactsIcon.png", label: "Contacts", selected: True } _ ]}, _ { icon: "images/folder.png", label: "Inbox", expanded: True, items: [ _ { icon: "images/folder.png", label: "Admin" }, _ { icon: "images/folder.png", label: "Corporate" }, _ { icon: "images/folder.png", label: "Finance" }, _ { icon: "images/folder.png", label: "Support" }, _ { icon: "images/folder.png", label: "Drafts" }, _ { icon: "images/folder.png", label: "Other" }, _ ]}, _ { icon: "images/notesIcon.png", label: "Notes" }, _ { iconsize: 14, icon: "images/settings.png", label: "Settings" }, _ { icon: "images/favorites.png", label: "Favorites" }, _ ] Tree1_settings.source=source
Output
See above.