是否可以在没有模型的情况下使用Yii booster
表单组件?
<?php echo $form->textFieldRow($model, 'textField',
array('hint'=>'In addition to freeform text, any HTML5 text-based input appears like so.')); ?>
是否可以在没有模型的情况下使用Yii booster
表单组件?
<?php echo $form->textFieldRow($model, 'textField',
array('hint'=>'In addition to freeform text, any HTML5 text-based input appears like so.')); ?>
如果要创建没有 ActiveRecord 的表单,可以在小部件中使用使用 TbForm 而不是 TbActiveForm。TbActiveForm 需要一个 ActiveRecord 模型,而 TbForm 不需要。
如果你只想使用单个元素,你总是可以回退到CHtml::textField()。