2

im using yii ctreeview extension and it isnt possible for me to expand/collapse the node by node click - only with +/-. have anyone an idea whats going wrong?

<div id="treeview">
    <?php $this->widget('ext.CTreeView_M',
        array(
            'data'=>$data,
            'animated'=>'fast',
            'collapsed'=>false,
            'htmlOptions'=>array('class'=>'treeview-famfamfam'),

            )); 
    ?>
</div>
4

1 に答える 1

0

デフォルトCTreeViewのウィジェットを使用して、階層データのツリー ビューを表示できます。

例えば:

$data = array(
    'text'=>$text, 
    'expanded'=>TRUE, 
    'id'=>$id,
);
$this->widget('CTreeView', 
    array(
        'data' => $data,
        'persist'=>'cookie'
    )
);
于 2015-04-10T07:13:37.170 に答える