0

如果表单是使用 formBuilder 构建的,如何在我的视图中使用 errorSummary?

我试过

echo $form -> errorSummary();

但它不起作用。

它实际上可以与formBuilder一起使用吗?

编辑:

表格:

return array(
'activeForm' => array(
    'class' => 'CActiveForm',
    'id' => 'nameserver-form',
    'enableClientValidation' => true,
    'clientOptions'=>array(
        'validateOnSubmit'=>true,
    ),
),
'showErrorSummary'=>true,
'showErrors'=>true,
'elements'=>array(
    'ip1_address'=>array(
        'type'=>'dropdownlist',
        'empty'=>''
    ),
    'ns1_nameserver'=>array(
        'type'=>'text',
        'maxlength'=>255,
        'size'=>25
    )
)
);
4

2 回答 2

2

此函数需要您的代码中未提供的参数。如:

<?php $form = $this->beginWidget('CActiveForm', array(
   'id'=>'user-form',
   'enableAjaxValidation'=>true,
   'enableClientValidation'=>true,
   'focus'=>array($model,'firstName'),
)); ?>

<?php echo $form->errorSummary($model); ?>

http://www.yiiframework.com/doc/api/1.1/CActiveForm#errorSummary-detail

于 2013-10-12T08:00:52.920 回答
0

所以,答案是:

<?= $form->renderBegin(); ?>   
... 
<?= $form->activeFormWidget->errorSummary($form->getModel(false)); ?>
...
<?= $form->renderEnd(); ?>
于 2014-03-11T09:08:06.407 回答