我正在使用 yii GridView,如果值等于预定义值,我想突出显示下表中的特定行。
$this->widget('bootstrap.widgets.TbGridView', array(
'type'=>'striped bordered condensed',
'filter' => $model,
'dataProvider'=>$model->search(),
'columns'=>$columns,
'afterAjaxUpdate'=>'js:function(id, data) {$(".filters").hide();}',
));
我怎样才能做到这一点?
非常感谢。