Answer the question
In order to leave comments, you need to log in
How to move checkbox from label to CheckboxList in Yii?
Generating a checkboxlist
Html::checkboxList('season', false, ['Зима', 'Лето', 'Демисезон']])
Answer the question
In order to leave comments, you need to log in
Decided so
Html::checkboxList(
'attribute',
false,
$options,
[
'item' => function($index, $label, $name, $checked, $value) {
$checkedLabel = $checked ? 'checked' : '';
$inputId = str_replace(['[', ']'], ['', ''], $name) . '_' . $index;
return "<div><input type='checkbox' name=$name value=$value id=$inputId $checkedLabel>"
. "<label for=$inputId>$label</label></div>";
}
]
);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question