max-dreamsoft/yii2-tree-dropdown

A dropdown widget containing expandable treeview with checkboxes

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Language:JavaScript

Type:yii2-extension

1.2 2018-08-19 17:44 UTC

This package is not auto-updated.

Last update: 2024-05-07 20:38:58 UTC


README

Dropdown with tree or list of checkboxes. This is extension for Yii2 framework.

Usage

<?php
echo \insperedia\treedropdown\DropdownTreeWidget::widget(
    [
        'data' => [
            'item1' => [
                'subitem1',
                'subitem2',               
            ],
           'item2' => [
               'subitem3',
               'subitem4',               
           ],
        ]
    ]
);
?>