本文整理匯總了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>