Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi can you please tell how can i validate the multiple checkbox any one is checked in yii framework

array('accept', 'required', 'requiredValue' => 1, 'message' => 'You should select alteast one')

share|improve this question
validating checkbox atleast one is selected i have to validate for multiple checkbox please can you guys help me – user887563 Jan 24 '12 at 10:17
Try using CHTML::checkBoxList() and make it required – Uday Sawant Jan 24 '12 at 10:34
can you give me example – user887563 Jan 24 '12 at 10:43

1 Answer

up vote 0 down vote accepted

As these value are usually sent as arrays, I wrote an array validator for these cases once: https://github.com/schmunk42/p3extensions/blob/master/validators/P3ArrayValidator.php

Usage example:

array('accept',
  'ext.validators.P3ArrayValidator', 
  'min'=>1,
  'allowEmpty'=>false, 
  'message' => 'You should select alteast one'
),
share|improve this answer
Not Useful for this qution, can please tell me with example to validate only check box – user887563 Jan 24 '12 at 11:11
Hmm, I would say it does exactly what you need, see the updated usage example. – schmunk Jan 24 '12 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.