我正在使用 checkBoxList 像这样-
CHtml::checkBoxList('Interests', $selectedInterests, CHtml::listData($interests, 'interest_id','interest'), array('uncheckValue'=>'0',''checkAll' => 'Check all'));
我已经在使用“选中所有”框的选项,但我希望在用户第一次访问该页面时默认选中所有框。然后他们可以取消选中那些不适用的。
当用户第一次使用 Yii 的复选框列表访问页面时,如何默认选中所有框?