kartik-v / yii2-tree-manager

An advanced tree management module using nested sets for Yii 2.
http://demos.krajee.com/tree-manager
Other
150 stars 107 forks source link

Override the detail view according to the selected nodes #266

Closed fasi1208 closed 4 years ago

fasi1208 commented 4 years ago

First of all thanks for this awesome module.

Is it possible that I can modify the detailed view on each node click? I want to add some extra information to it.

kartik-v commented 4 years ago

The extension already provides you the ability to do that via either Module::treeViewSettings or TreeView::nodeAddlViews where you can set part 1, 2, 3, 4 or 5 to customize or you can set your own view file via TreeView::nodeView or Module::treeViewSettings['nodeView']

kartik-v commented 4 years ago

Refer in the documentation about nodeAddlViews

fasi1208 commented 4 years ago

Thank you for your quick response. As a newbie I am finding it hard to do it. Can you please share me any example which has implemented it ?