0

如何将 cgridview 行的 $Data 传递给其他视图文件?我的 view.php 文件和以下代码中有 Cgridview。cgridview 代码

<?php 
$this->widget('bootstrap.widgets.TbGridView', array(
'type'=>'striped bordered condensed',
'id'=>'siteaccess-grid',
'dataProvider'=>$siteaccess->search(),
'filter'=>$siteaccess,
'columns'=>array(
    array('name'=>'ownerID', 'header'=>'Site Owner'),
    array('name'=>'siteID', 'header'=>'Site ID'),
    array(
        'class'=>'bootstrap.widgets.TbButtonColumn',
        'htmlOptions'=>array('style'=>'width: 10px'),
        'template'=>'{dashboard}',
        'buttons'=>array (
            'dashboard' => array (
                'label' => 'Open Dashboard',            
                'options' => array(
                    'data-toggle' => 'modal', 
                    'data-target' => '#myModal',
                ), 
                'icon' => 'briefcase',
                'csrf'=>true
            ),
        ),  
    ),
    ),
)
); 
?>

这是我在模式窗口中显示的选项卡代码。当我单击 cgridview 的每一行时,它会启动显示选项卡的模式窗口,并在其中一个选项卡中呈现 _graph。因此,我想将单击的行 $data 传递给 _graph。

$this->widget('bootstrap.widgets.TbTabs', array(
    'type'=>'pills',
    'tabs'=>array(
        array('label'=>'Dash1', 'id'=>'dash1',  'items'=> array(
            array('label'=>'Sub Dash1', 'id'=>'subdash1', 'content'=> $this->renderPartial('_graph', true, true)),

现在我想将 cgridview 中选定的行 $data 传递给 _graph.php 文件。我怎样才能做到这一点?

4

1 回答 1

0

试试下面的东西,未经测试,但你应该明白了。

 'content'=> $this->renderPartial('_graph',array('data'=>$data->id))),
于 2013-10-22T11:17:03.343 回答