HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_childForm.php
Go to the documentation of this file.
1 <div class="form">
2 
3 <?php $form = $this->beginWidget('CActiveForm'); ?>
4 
5  <div class="row">
6  <?php echo $form->dropDownList($model, 'itemname', $itemnameSelectOptions); ?>
7  <?php echo $form->error($model, 'itemname'); ?>
8  </div>
9 
10  <div class="row buttons">
11  <?php echo CHtml::submitButton(Rights::t('core', 'Add')); ?>
12  </div>
13 
14 <?php $this->endWidget(); ?>
15 
16 </div>