yii模板中的label标签
<?php echo $form->labelEx($model,'name'); ?>
编译后:
<label for="Project_name" class="required">项目名称 <span class="required">*</span></label>
yii模板中的文本标签

<?php echo $form->textField($model,'name',array('size'=>60,'maxlength'=>128)); ?>

编译后:
<input size="60" maxlength="128" name="Project[name]" >
yii模板中的error标签
<?php echo $form->error($model,'name'); ?>
编译后:
<div class="errorMessage">{变量}</div>
yii模板中的textarea标签
<?php echo $form->textArea($model,'description',array('rows'=>6, 'cols'=>50)); ?>
编译后:
<textarea rows="6" cols="50" name="Project[description]" ></textarea>
yii模板中的hidden标签
<?php echo $form->hiddenField($model,'create_time',array('value'=>time())); ?>
编译后:
<input value="1376475100" name="Project[create_time]" >
yii模板中的password标签
<?php echo $form->passwordField($model,'password'); ?>
编译后:
<input name="Project[password]" >
yii模板中的url标签
<?php echo $form->urlField($model,'url'); ?>
编译后:
<input name="Project[url]" >
yii模板中的radio标签
<?php echo $form->radioButtonList($model, 'update_time', array('1'=>'分页','0'=>'不分页')); ?>
编译后:
<input >
<span >分页</label><br>
<input > 
<label for="Project_update_time_1">不分页</label></span>
yii模板中的file标签
<?php echo $form->fileField($model, 'update_time'); ?>
编译后:
<input >
<input name="Project[update_time]" >
yii模板中的button标签
<?php echo CHtml::submitButton($model->isNewRecord ? '创建' : '保存'); ?>
编译后:
<input type="submit" name="yt0" value="创建">
yii模板中的checkBox标签
<?php echo $form->checkBox($model, 'update_time',array('checked'=>'checked')); ?>
编译后:
<input >
<input checked="checked" name="Project[update_time]" >
yii模板中的select标签
<?php echo $form->dropDownList($model, 'update_time', array('1'=>'分页','0'=>'不分页')); ?>
编译后:
<select name="Project[update_time]" >
<option value="1">分页</option>
<option value="0">不分页</option>
</select>
yii模板中的select标签
<?php echo $form->listBox($model, 'update_time', array('1'=>'分页','0'=>'不分页')); ?>
编译后:
<select size="4" name="Project[update_time]" >
<option value="1">分页</option>
<option value="0">不分页</option>
</select>
yii模板中的checkbox标签
<?php echo $form->checkBoxList($model, 'update_time', array('1'=>'分页','0'=>'不分页')); ?>
编译后:
<input >分页</label><br>
<input >不分页</label></span>
yii模板中的date标签
 <?php echo $form->dateField($model, 'update_time'); ?>
编译后:
<input name="Project[update_time]" >
yii模板中的number标签
<?php echo $form->numberField($model, 'number'); ?>
编译后:
<input name="Project[number]" >
yii模板中的email标签
<?php echo $form->emailField($model, 'email'); ?>
编译后:
<input name="Project[email]" >
yii模板中的label标签
 <?php echo $form->label($model, 'update_time'); ?>
编译后:
<label for="Project_update_time">更新时间</label>

相关文章: