koperdog/yii2-treeview

Widget to display the ns tree as a grid

Installs: 405

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 1

Open Issues: 1

Type:yii2-extension

1.0.1 2020-02-05 07:12 UTC

This package is auto-updated.

Last update: 2024-05-05 21:25:51 UTC


README

Widget to display the nested sets tree as a grid

Based on GridView

Packagist Packagist Version PHP from Packagist

preview

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist koperdog/yii2-treeview "*"

or add

"koperdog/yii2-treeview": "*"

to the require section of your composer.json file.

Usage

Add to your model field:

public $children = null;

Has the same settings as GridView.

echo koperdog\yii2treeview\TreeView::widget([
	'dataProvider'  => $dataProvider,
	//'depthPrefix' => ' — ', //see Additional options
	//'depthRoot'   => 1, //see Additional options
	//'collaplse'   => true, //see Additional options
	'columns' => [
	  'id',
	  'name',
	  'created_at:datetime',
	  // ...
	],
    ]);

The column classes the same as GridView

['class' => '\koperdog\yii2treeview\base\CheckboxColumn'],
['class' => '\koperdog\yii2treeview\base\ActionColumn'],
['class' => '\koperdog\yii2treeview\base\RadioButtonColumn'],
['class' => '\koperdog\yii2treeview\base\SerialColumn'],
Additional options
depthPrefix - Prefix that displays depth (default " — ")
depthRoot - Offset from the root (default 0)
collaplse - if true, it will add the class "closed" to the node elements, and "tree-collapse" to the root of the tree (default false)