[['check1','check2','check3'],'required','when'=>function ($model) {
return ($model->check1 == null and $model->check2 == null and $model->check3 == null);
}, 'message'=>'чудак, чекни хоть что-нибудь']
[['check1','check2'],'required','requiredValue'=>1, 'when' => function ($model) {
return ($model->check1== null and $model->check2== null);
}, 'whenClient' => "function (attribute, value) {
return ($('#formname-check1').is(':checked') == false && $('#formname-check2').is(':checked')==false);
}",'message'=>'Выберите хотя бы одну категорию'],