6

我正在使用单个表单来创建和更新表单。我需要在以下表单中默认选中复选框

<div class="row" style='float:left;;margin-left:5px'>
        <?php echo '<span for="label" style="margin-bottom:5px;font-size: 0.9em;font-weight: bold;">Label</span><br />'; ?>
        <?php echo $form->checkBox($model,'label_name',array('value'=>1,'uncheckValue'=>0,'checked'=>'checked','style'=>'margin-top:7px;')); ?>
        <?php echo $form->error($model,'label_name'); ?>
    </div>

我正在使用上面的代码来实现相同的目的,但没有得到预期的结果。在更新表单时,即使未选中,它也会显示为选中状态

4

5 回答 5

9

我得到了解决方案我使用代码本身请看看

<div class="row" style='float:left;;margin-left:5px'>
        <?php echo '<span for="label" style="margin-bottom:5px;font-size: 0.9em;font-weight: bold;">Label</span><br />'; ?>
        <?php echo $form->checkBox($model,'label_name',array('value'=>1,'uncheckValue'=>0,'checked'=>($model->id=="")?true:$model->label_name),'style'=>'margin-top:7px;')); ?>
        <?php echo $form->error($model,'label_name'); ?>
    </div
于 2013-04-26T07:14:28.953 回答
4

更好的解决方案是在控制器中设置值:

public function actionCreate() {
    $model = new ModelName();

    if (isset($_POST[$model])) {
        // ... save code here
    }
    else {
        // checkboxes for label 'label_name' with value '1' 
        //   will be checked by default on first load
        $model->label_name = true; // or 1
    }

    $this->render('create', array(
        'model' => $model,
    ));
}

或者更好的是,在afterConstruct()模型中的函数中:

protected function afterConstruct() {

    parent::afterConstruct();

    $this->label_name = true; // or 1
}
于 2013-04-26T07:26:07.393 回答
2

按照下面的链接

http://www.bsourcecode.com/2013/03/yii-chtml-checkboxlist

我希望链接有用。

于 2013-12-03T12:28:00.977 回答
1

您只需要在模型中设置默认值:

public $label_name = true;
于 2013-04-26T11:09:37.457 回答
0

您的要求是选中复选框以进行创建和更新。checked=checked 将用于创建表单,但在更新时您必须通过代码处理它

于 2013-04-26T07:08:29.647 回答