bashgid/web/protected/views/videoChannelRelation/_form.php

40 lines
1.2 KiB
PHP
Raw Normal View History

2015-06-26 10:03:20 +00:00
<?php
/* @var $this VideoChannelRelationController */
/* @var $model VideoChannelRelation */
/* @var $form CActiveForm */
?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'video-channel-relation-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,
)); ?>
<p class="note">Fields with <span class="required">*</span> are required.</p>
<?php echo $form->errorSummary($model); ?>
<div class="row">
<?php echo $form->labelEx($model,'videoUrl'); ?>
<?php echo $form->textArea($model,'videoUrl',array('rows'=>6, 'cols'=>50)); ?>
<?php echo $form->error($model,'videoUrl'); ?>
</div>
<div class="row">
<?php echo $form->labelEx($model,'name'); ?>
<?php echo $form->textArea($model,'name',array('rows'=>6, 'cols'=>50)); ?>
<?php echo $form->error($model,'name'); ?>
</div>
<div class="row buttons">
<?php echo CHtml::submitButton($model->isNewRecord ? 'Create' : 'Save'); ?>
</div>
<?php $this->endWidget(); ?>
</div><!-- form -->