walkboy/yii2-indeterminate-checkbox-list

Yii2 多级复选框列表

dev-master 2017-05-02 22:10 UTC

This package is auto-updated.

Last update: 2024-09-29 05:20:56 UTC


README

此示例的Yii2实现: https://css-tricks.cn/examples/IndeterminateCheckboxes/

安装

"walkboy/yii2-indeterminate-checkbox-list": "dev-master" 添加到 composer.json 中,并运行 composer update

使用

<?= \walkboy\IndeterminateCheckboxList\IndeterminateCheckboxList::widget([
    'model' => $model,
    'attribute' => 'categories_array',
    'source' => Work::find()->orderBy('title')->where('parent_id IS NULL')->orderBy('parent_id')->all(),
    'parent_attribute_name' => 'parent_id',
    'children_attribute_name' => 'children',
]) ?>