johnnylei / jstree
Yii2 extension js tree
Installs: 313
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- php: >=5.4.0
- yiisoft/yii2: >=2.0.6
This package is auto-updated.
Last update: 2025-03-29 00:37:18 UTC
README
install
composer require --prefer-dist johnnylei/jstree
jstree相关配置参照官方文档https://www.jstree.com/
直接使用
<?= \common\widgets\jsTree\JsTree::widget([
'options'=>[
'core' => [
'data' => [
"text" => "Root node",
"children" => [
[
"text" => "Child node 1",
"data"=>"name1",
],
[
"text" => "Child node 2",
'data'=>'name2'
],
[
"text" => "Child node 3",
'data'=>'name3',
],
]
]
]
],
])?>
使用在active form里面
<?= $form->field($model, 'content')->widget(ActiveFormJsTree::className(), [
'options'=>[
'core' => [
'data' => [
"text" => "Root node",
"children" => [
[
"text" => "Child node 1",
"data"=>"name1",
],
[
"text" => "Child node 2",
'data'=>'name2'
],
[
"text" => "Child node 3",
'data'=>'name3',
],
]
]
]
],
])?>
在form表单里面使用
<?= FormJsTree::widget([
'inputOptions'=>[
'class' => 'form-control',
'style'=>[
'display'=>'none',
],
'name'=>'MoveForm[parent]',
'value'=>$parent,
],
'options'=>[
'core' => [
'data' => [
"text" => "Root node",
"children" => [
[
"text" => "Child node 1",
"data"=>"name1",
],
[
"text" => "Child node 2",
'data'=>'name2'
],
[
"text" => "Child node 3",
'data'=>'name3',
],
]
],
]
],
]);?>