Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CGridViewのデフォルトの動作は、誰かが行をクリックすると、「選択された」クラスがその行に追加されることのようです。どうすればそれを取り除くことができますか?行をクリックするとき、私は何も起こらないようにしたいです。
$selectableRowsプロパティを次のように設定する必要があります0:
$selectableRows
0
<?php $this->widget('zii.widgets.grid.CGridView', array( 'selectableRows' => 0, /*the rest of your initialization properties*/ )); ?>
Yiiクラスリファレンスで見ることができます。