Yii Bootstrap Checkall Not Working

I have this code in my view …




echo $form->checkBoxListRow($data, "account_permissions[account]",Yii::app()->params->account_permissions["account"], array("checkAll" => "Check all ..."));



But the checkAll is not working, in normal Yii it does work, but when using Yii Bootstrap it does not however Yii Bootstrap appears to just be a wrapper and the html options still work except this one?

Anyone else had this problem?

Same problem to me.

Finally I found the code below, it seems there is no supporting for "checkAll" feature in yii-bootstrap.

TbActiveForm->inputsList


unset($htmlOptions['checkAll'], $htmlOptions['checkAllLast']);

but, why? isn’t “checkAll” usefully? :(