TreeView Options

From Lianjapedia
Jump to: navigation, search

Overview

TreeView Sections are data-bound tree grids that allow you to drill down through levels of hierarchical nodes.

See Also

TreeView Section Attributes

example_treeview App

The example_treeview sample App demonstrates the use of a TreeView Section.

The App consists of one Page and two Sections. The top Section is a TreeView Section, the lower a Form Section (section4).

Clicking on the arrows (>) expands the TreeView. Double-clicking on a Company Name loads the details for that Customer in the Customers Form Section.

TreeView Section


Attributes

The TreeView Options in the Section Attributes define the data and organization for the TreeView.

TreeView Section: Section Attributes


Note: the database and table are specified in the Details at the top of the Section Attributes.

Attribute Description
Title The name of the column containing the title to be displayed for each leaf node of the tree.
Key The key expression to be associated with the tree node. This will be passed as the second argument to the click or dblclick delegates.
Group By A comma separated list of expressions that the tree will be organized by.
Filter The filter expression that restricts which records will be included in the tree

Here is how the Attribute definitions relate to the data displayed.

TreeView Section


The double click event delegate for the TreeView Section has the following code:

////////////////////////////////////////////////////////////////
// Event delegate for 'dblclick' event
function page1_section1_dblclick(title, key)
{
	Lianja.showDocument("page:page1.section4?action=search&text="+key);	
};

The example_treeview App does not have a Filter specified, but you can specify a condition to display only the matching records.

For example, here I have restricted the TreeView to records where the country is 'Canada' or 'USA' using the INLIST() function.

TreeView Section: Filter


Search Field

Note that to use showdocument() with the search action, the Section being searched must have its Search field set.

This is set in the Field Attributes for the key Field.

TreeView Section: Form Section Search field


Notes on Client Support

Attribute Notes
Title -
Key -
Group By -
Filter -
Double Click Delegate -