xiongchuan / yii2-sortable-tree
The Tree widget based on Jquery-sortable-list,drag and drop to sort the tree.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/jquery-sortable-lists: *
This package is not auto-updated.
Last update: 2024-11-09 20:50:55 UTC
README
The Sortable Tree widget based on Jquery-sortable-list,drag and drop to sort the tree.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist xiongchuan/yii2-sortable-tree "*"
or add
"xiongchuan/yii2-sortable-tree": "*"
to the require section of your composer.json.
Usage
Once the extension is installed, simply add widget to your page as follows:
<?php echo xiongchuan\tree\SortableTree::widget([ 'items' => [ ['title' => 'Category 1'], ['title' => 'Category 2'], [ 'title' => 'Category 3', 'children' => [ [ 'title' => 'Category 3.1', ], [ 'title' => 'Category 3.2', 'children' => [ [ 'title' => 'Category 3.2.1', ] ], 'folder' => true, ], ], 'folder' => true, ], ], 'clientOptions' => [ 'autoCollapse' => true, 'clickFolderMode' => 3, 'activate' => new \yii\web\JsExpression(' function(node, data) { node = data.node; // Log node title console.log(node.title); } '), ], ]); ?>