【发布时间】:2013-05-11 13:43:39
【问题描述】:
我正在像这样使用 checkBoxList-
CHtml::checkBoxList('Interests', $selectedInterests, CHtml::listData($interests, 'interest_id','interest'), array('uncheckValue'=>'0',''checkAll' => 'Check all'));
我已经在使用“选中所有”框的选项,但我希望在用户第一次访问该页面时默认选中所有框。然后他们可以取消选中那些不适用的。
当用户第一次使用 Yii 的复选框列表访问页面时,如何默认选中所有框?
【问题讨论】:
标签: yii checkboxlist