yii2 jstree 树状图扩展 [ 2.0 版本 ]
yii extension js tree
install
composer require --prefer-dist johnnylei/jstree
github
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', ], ] ], ] ], ]);?>
johnny1991
注册时间:2017-03-26
最后登录:2024-03-05
在线时长:81小时27分
最后登录:2024-03-05
在线时长:81小时27分
- 粉丝26
- 金钱3285
- 威望580
- 积分9895
共 4 条评论
好东西!!!
请问这个有图片教程吗 刚接触yii2 好多不懂的
一头雾水,测试失败
这个可以从数据库中获取数据,然后显示吗
可以的啊,你只要按照格式,将数据填充进去,就可以了