beginWidget('CActiveForm', array(
'id'=>'journal-form',
// Please note: When you enable ajax validation, make sure the corresponding
// controller action is handling ajax validation correctly.
// There is a call to performAjaxValidation() commented in generated controller code.
// See class documentation of CActiveForm for details on this.
'enableAjaxValidation'=>false,
)); ?>
Fields with * are required.
errorSummary($model); ?>
labelEx($model,'name'); ?>
textArea($model,'name',array('rows'=>6, 'cols'=>50)); ?>
error($model,'name'); ?>
labelEx($model,'title'); ?>
textArea($model,'title',array('rows'=>6, 'cols'=>50)); ?>
error($model,'title'); ?>
labelEx($model,'description'); ?>
textArea($model,'description',array('rows'=>6, 'cols'=>50)); ?>
error($model,'description'); ?>
labelEx($model,'hidden'); ?>
textField($model,'hidden'); ?>
error($model,'hidden'); ?>
labelEx($model,'geoCategory'); ?>
textField($model,'geoCategory'); ?>
error($model,'geoCategory'); ?>
labelEx($model,'main'); ?>
textField($model,'main'); ?>
error($model,'main'); ?>
isNewRecord ? 'Create' : 'Save'); ?>
endWidget(); ?>