yii单击行时禁用CGridView中的onclick行为

时间:2012-04-14 20:59:09

标签: yii

似乎CGridView中的默认行为是当有人点击该行时,它会将“selected”类添加到该行。我怎么摆脱它?单击该行时,我不希望发生任何事情。

1 个答案:

答案 0 :(得分:4)

您必须将$selectableRows属性设置为0

<?php $this->widget('zii.widgets.grid.CGridView', array(
  'selectableRows' => 0,
  /*the rest of your initialization properties*/
)); ?>

You can see it in Yii Class Reference.