本文整理汇总了PHP中Batch::items方法的典型用法代码示例。如果您正苦于以下问题:PHP Batch::items方法的具体用法?PHP Batch::items怎么用?PHP Batch::items使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Batch
的用法示例。
在下文中一共展示了Batch::items方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
echo $form->error($model, 'sub_id');
?>
</div>
<div class="row">
<?php
echo $form->labelEx($model, 'batch_id');
?>
<?php
//echo $form->textField($model,'batch_id');
?>
<?php
//echo $form->dropDownList($model,'batch_id', CHtml::listData(Batch::model()->findAll(), 'batch_id', 'batch_name'));
?>
<?php
echo $form->dropDownList($model, 'batch_id', Batch::items(), array('empty' => '---------------Select-------------', 'tabindex' => 7));
?>
<span class="status"> </span>
<?php
echo $form->error($model, 'batch_id');
?>
</div>
<!--<div class="row">
<?php
echo $form->labelEx($model, 'timetable_id');
?>
<?php
echo $form->textField($model, 'timetable_id');
?>
<?php
示例2: array
}
?>
<span class="status"> </span>
<?php
echo $form->error($model, 'student_transaction_division_id');
?>
</div>
</div>
<div class="row">
<div class="row-left">
<?php
echo $form->labelEx($model, 'student_transaction_batch_id');
?>
<?php
echo $form->dropDownList($model, 'student_transaction_batch_id', Batch::items(), array('empty' => '-----------Select---------', 'tabindex' => 5));
?>
<span class="status"> </span>
<?php
echo $form->error($model, 'student_transaction_batch_id');
?>
</div>
<div class="row-right">
<?php
echo $form->labelEx($model, 'student_transaction_shift_id');
?>
<?php
echo $form->dropDownList($model, 'student_transaction_shift_id', Shift::items(), array('empty' => '-----------Select---------', 'tabindex' => 6));
?>
<span class="status"> </span>