TreeView Options

From Lianjapedia
Revision as of 13:17, 17 March 2015 by Yvonne.milne (Talk | contribs)

Jump to: navigation, search

Under Construction

TreeView Section: example_treeview App


The 'Lianja Treeview Demo' (example_treeview) App demonstrates the use of a TreeView Section.

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: Section Attributes



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

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
TreeView Section



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



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);	
};
TreeView Section: Form Section 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.