yii2mod / yii2-tree

Tree widget based on Fancytree extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to switch fancytree's skin?

lvbaocheng opened this issue · comments

You can change skin as follows:

        'assetManager' => [
            'bundles' => [
                'yii2mod\tree\TreeAsset' => [
                    'css' => [
                        'skin-win8/ui.fancytree.less',
                    ]
                ],
            ],
        ],

Thank you