如何在yiiwheels.widgets.grid.WhGridView中将选定的行ID传递给Model

时间:2013-12-20 14:45:58

标签: php yii

使用此bootstrap.widgets.TbButtonColumn尝试创建一个按钮列。如何设置ID值?

我们尝试了'id' => '$data->Id',如下所示,它不起作用。

    array(        
    'class'=>'bootstrap.widgets.TbButtonColumn',
    'template' => '{linkPatient} {toggleVisit} {update} {delete}',
    'buttons' => array(
    'linkPatient' => array(                                                
    'label' => 'Link Patient',
    'icon' => 'icon-user', 
    'id' => '$data->Id',
    'options' => array('data-toggle' =>'modal',
     'data-target' => '#myModal',                                                                                                                                                                                                                           
      ),                                                
      ),   
  • 然后如何将此Id值传递给模态对话框。
  • 如何更改按钮列图标onClick to toogle并执行其他一些功能。

1 个答案:

答案 0 :(得分:0)

您可以使用'options'=>array()来设置ID。或者使用htmlOptions Look here