The treeTable plugin allows you to display a tree in a table, i.e. a directory structure or a nested list. Each branch in this tree can be collapsed and expanded, just like in a file explorer in most modern operating systems.
protected/extensionsSee the following code example:
$this->widget('ext.treetable.JTreeTable',array( 'id'=>'treeTable', 'primaryColumn'=>'id', 'parentColumn'=>'parent_id', 'columns'=>array( 'id'=>array( 'label'=>'Id', 'headerHtmlOptions'=>array('width'=>80), 'htmlOptions'=>array('align'=>'center'), ), 'name'=>'Name', ), 'items'=>array( array('id'=>1,'parent_id'=>0,'name'=>'test 1'), array('id'=>2,'parent_id'=>1,'name'=>'test 1\'s children 1'), ), 'options'=>array( 'initialState'=>'expanded', ), ));
Total 2 comments
Muy buena extensión, es muy útil para crear árboles binarios.
Nice treetable. Do yourself. :}
Leave a comment
Please login to leave your comment.