yongtiger / yii2-bootstrap-tree
A bootstrap tree for both jonmiles bootstrap treeview 1.2.0 and 2.0.0 (https://github.com/jonmiles/bootstrap-treeview)
Installs: 12 034
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.5
- bower-asset/bootstrap-treeview: @dev
- yiisoft/yii2: *
- yiisoft/yii2-bootstrap: *
This package is not auto-updated.
Last update: 2024-10-27 01:45:44 UTC
README
A bootstrap tree for jonmiles bootstrap treeview
BOTH 1.2.0
and 2.0.0
(https://github.com/jonmiles/bootstrap-treeview).
Forked and improved from dmitry-suffi/yii-tree-widget and lesha724/yii2-bootstrap-tree.
FEATURES
- for
jonmiles bootstrap treeview
BOTH1.2.0
and2.0.0
(https://github.com/jonmiles/bootstrap-treeview) - automatically displaying selected nodes according to route/params (e.g.
id
)
DEPENDENCES
jonmiles bootstrap treeview 1.2.0
or2.0.0
(https://github.com/jonmiles/bootstrap-treeview)
INSTALLATION
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist yongtiger/yii2-bootstrap-tree "*"
or add
"yongtiger/yii2-bootstrap-tree": "*"
to the require section of your composer.json.
CONFIGURATION
USAGES
Example of data.$items
structure (https://github.com/jonmiles/bootstrap-treeview#data-structure):
$items = [ [ 'text' => 'Node 1', ///(needed!) 'href' => ['site/index', id => 1], ///(optional) Note: `href` must be route array! 'icon' => 'glyphicon glyphicon-stop', ///(optional) 'selectedIcon' => "glyphicon glyphicon-stop", ///(optional) 'selectable' => true, ///(optional) 'state' => [ ///(optional) // 'checked' => true, // 'disabled' => true, // 'expanded' => true, // 'selected' => true, ], 'tags' => ['available'], ///(optional) 'visible' => true, ///(optional) same as [yii\widgets\Menu::$visible] 'encode' => true, ///(optional) same as [yii\widgets\Menu::$encode] // ... 'nodes' => [ ['text' => 'Node 1.1', 'href' => ['site/index', id => 2]], ['text' => 'Node 1.2', 'href' => ['site/index', id => 3]], ] ], [ 'text' => 'Node 2', 'href' => ['site/index', id => 4], 'nodes' => [ ['text' => 'Node 2.1', 'href' => ['site/index', id => 5]], ['text' => 'Node 2.2', 'href' => ['site/index', id => 6]], ] ], // ... ];
echo \yongtiger\bootstraptree\widgets\BootstrapTree::widget([ 'options'=>[ //https://github.com/jonmiles/bootstrap-treeview#options 'data' => $items, ///(needed!) 'enableLinks' => true, ///(optional) 'showTags' => true, ///(optional) 'levels' => 3, ///(optional) 'multiSelect' => true, ///(optional, but when `selectParents` is true, you must also set this to true!) ], 'htmlOptions' => [ ///(optional) 'id' => 'treeview-tabs', ], 'events'=>[ ///(optional) //https://github.com/jonmiles/bootstrap-treeview#events 'onNodeSelected'=>'function(event, data) { // Your logic goes here alert(data.text); }' ], ///(needed for using jonmiles bootstrap-treeview 2.0.0, must specify it as `<a href="{href}">{text}</a>`) 'textTemplate' => '<a href="{href}">{text}</a>', ///(optional) Note: when it is true, you must also set `multiSelect` of the treeview widget options to true! 'selectParents' => true, ]);
Other usages are just same as yii\widgets\Menu.
-
textTemplate
is same as yii\widgets\Menu::labelTemplateNote: for using
jonmiles bootstrap-treeview 2.0.0
, must specify it as<a href="{href}">{text}</a>
-
encodeTexts
is same as yii\widgets\Menu::encodeLabels -
selectNodes
is same as yii\widgets\Menu::activateItems -
selectParents
is same as yii\widgets\Menu::activateParentsNote: when it is true, you must also set
multiSelect
of the treeview widget options to true! -
hideEmptyNodes
is same as yii\widgets\Menu::hideEmptyItems -
route
is same as yii\widgets\Menu::route -
params
is same as yii\widgets\Menu::params
NOTES
href
has been obsoleted injonmiles bootstrap-treeview 2.0.0
. You can specifytextTemplate
as<a href="{href}">{text}</a>
in the treeview widget options to generate the url of node.
DOCUMENTS
REFERENCES
SEE ALSO
TBD
Development roadmap
LICENSE
yii2-bootstrap-tree is released under the MIT license, see LICENSE file for details.