i have a table tbl_pricing(product_id,price).
i use this code in the form
echo CHtml::activeCheckBoxList($model,'price',
CHtml::listData(Pricing::model()->findAll(), 'price', 'price'),
array( 'template'=>'<li>{input} {label}</li>', 'class'=>'masterIndexFilter',));
i found that all price value come on checkbox in the view part.
but i want to take only 4 or 5 checkbox which takes all price value.
example 1. below 2000 one checkbox
2. 2001 to 5000 2nd checkbox
3. 5001 to 10000 3rd checkbox
is it possible,to take all value in 4 or 5 checkbox?
if yes please give me some suggestion .
thanks in advance.

Help













