似乎CGridView中的默认行为是当有人点击该行时,它会将“selected”类添加到该行。我怎么摆脱它?单击该行时,我不希望发生任何事情。
答案 0 :(得分:4)
您必须将$selectableRows
属性设置为0
:
<?php $this->widget('zii.widgets.grid.CGridView', array(
'selectableRows' => 0,
/*the rest of your initialization properties*/
)); ?>