pmls63 2016-04-29 14:02:31 5507次浏览 0条评论 4 0 0
<?php $model->test=($model->test)?:[1,2,3]?>
<?= $form->field($model, 'DinkingType',[
'options'=>['class' => 'form-group form-md-checkboxes'],
'template' => '{label}<div class="col-md-9 md-checkbox-inline">{input}</div>{hint}{error}', 
])->checkBoxList($model->test(),
[
    'item' => function($index, $label, $name, $checked, $value) {
        $checked=$checked?"checked":"";
        $return = '<div class="md-checkbox">';
        $return .= '<input type="checkbox" id="' . $name . $value . '" name="' . $name . '" value="' . $value . '" class="md-checkbox" '.$checked.'>';
        $return .= '<label for="' . $name . $value . '">
                    <span></span>
                    <span class="check"></span>
                    <span class="box"></span>' . ucwords($label) . '</label>';
        $return .= '</div>';
        return $return;
    }
]) ?>
    没有找到数据。
您需要登录后才可以评论。登录 | 立即注册