我正在开发 Yii ,我目前正在使用Yii twitter bootstrap 来显示 GridView 中的一些列:
假设我有这个:
$this->widget('bootstrap.widgets.TbGridView', array(
'id'=>'gridview',
'dataProvider'=>new CArrayDataProvider($model),
'template'=>"{items}",
'type'=>'bordered',
'columns'=>array(
array(
'header' => 'Entries',
'value' => '$data->entry_name'
),
array(
'name' => 'value',
'header' => 'Value',
'value'=>function($data){
//if $data->value is zero then hide the "Value" column
if($data->value == 0){
//do something to hide the column here
}
//otherwise return a label to display the value inside
return CHtml::label($data->value,FALSE,array('id'=>'label'));
},
'type'=>'raw',
),
)
)
);
我可以使用以下方法隐藏整个列:
'headerHtmlOptions'=>array('style'=>'display:none'),
'htmlOptions'=>array('style'=>'display:none'),
但这是在我将columns参数传递给小部件之后。我希望在值为零时隐藏“值”列。如何隐藏或显示整个列根据其值?非常感谢!
答案 0 :(得分:6)
试试这个
array(
'name' => 'value',
'header' => 'Value',
'value' => '$data->value',
'visible' => '$data->value != 0',
'type' => 'raw',
)