Add checked option to tree widget

This commit is contained in:
Hadi Nategh 2015-07-22 10:04:24 +00:00
parent 1ac7324243
commit ae4fa08e80

View File

@ -32,6 +32,7 @@ egw_framework::includeCSS('/phpgwapi/js/dhtmlxtree/codebase/dhtmlXTree.css');
* array(tree::ID => '/INBOX/sub', tree::LABEL => 'sub', tree::IMAGE_LEAF => 'folderClosed.gif'), * array(tree::ID => '/INBOX/sub', tree::LABEL => 'sub', tree::IMAGE_LEAF => 'folderClosed.gif'),
* array(tree::ID => '/INBOX/sub2', tree::LABEL => 'sub2', tree::IMAGE_LEAF => 'folderClosed.gif'), * array(tree::ID => '/INBOX/sub2', tree::LABEL => 'sub2', tree::IMAGE_LEAF => 'folderClosed.gif'),
* ), * ),
* tree::CHECKED => true
* ), * ),
* array( * array(
* tree::ID => '/user', * tree::ID => '/user',
@ -39,7 +40,8 @@ egw_framework::includeCSS('/phpgwapi/js/dhtmlxtree/codebase/dhtmlXTree.css');
* tree::CHILDREN => array( * tree::CHILDREN => array(
* array(tree::ID => '/user/birgit', tree::LABEL => 'birgit', tree::IMAGE_LEAF => 'folderClosed.gif'), * array(tree::ID => '/user/birgit', tree::LABEL => 'birgit', tree::IMAGE_LEAF => 'folderClosed.gif'),
* array(tree::ID => '/user/ralf', tree::LABEL => 'ralf', tree::AUTOLOAD_CHILDREN => 1), * array(tree::ID => '/user/ralf', tree::LABEL => 'ralf', tree::AUTOLOAD_CHILDREN => 1),
* ) * ),
* tree::CHECKED => false
* ), * ),
* )); * ));
* *
@ -96,6 +98,11 @@ class etemplate_widget_tree extends etemplate_widget
*/ */
const OPEN = 'open'; const OPEN = 'open';
/**
* check checkbox if exists (in case of three-state checkboxes values can be:0 unchecked- 1 - checked or -1 - unsure)
*/
const CHECKED = 0;
/** /**
* Parse and set extra attributes from xml in template object * Parse and set extra attributes from xml in template object
* *