Пример #1
0
 public function run()
 {
     $htmlOptions = array_merge(array('class' => 'form wide'), $this->htmlOptions);
     $form = new CForm($this->form, $this->form['model']);
     echo CHtml::openTag('div', $htmlOptions);
     echo $form->renderBegin();
     foreach ($form->getElements() as $element) {
         echo CHtml::openTag('div', array('class' => 'row'));
         echo $element->render();
         echo '</div>';
     }
     echo '<div style="display:block; height:30px; margin-top:10px;">';
     echo $form->renderButtons();
     echo '</div>';
     echo $form->getActiveFormWidget()->errorSummary($this->form['model']) . "\n";
     echo $form->renderEnd();
     echo '</div>';
 }
Пример #2
0
    public function getElements()
    {
        $elements = parent::getElements();
        foreach ($elements as $element)
        {
            if (isset($element->attributes['prompt']))
            {
                $element->attributes['prompt'] = t($element->attributes['prompt']);
            }
        }

        return $elements;
    }
Пример #3
0
 */
//print_r($elements); die;
if (isset($modelArray[0]) && isset($elements['elements'][0])) {
    $formHead = new CForm(array_merge($elements['elements'][0], ContextController::getDefaultElements()), $modelArray[0]);
    echo $formHead->renderBegin();
}
echo CHtml::tag('div', ['class' => 'form'], false, false);
echo CHtml::tag('table', ['class' => 'tabular-container'], false, false);
echo CHtml::tag('thead', ['class' => 'tabular-header'], false, false);
echo CHtml::tag('tr', [], $tableHeader);
echo CHtml::closeTag('thead');
echo CHtml::tag('tbody', ['class' => 'tabular-input-container'], false, false);
foreach ($modelArray as $modelIndex => $model) {
    echo CHtml::tag('tr', ['class' => 'tabular-input'], false, false);
    $form = new CForm($elements['elements'][$modelIndex], $model);
    foreach ($form->getElements() as $element) {
        $element->name = "[{$modelIndex}]{$element->name}";
        echo CHtml::tag('td', [], $element->renderInput());
    }
    echo CHtml::closeTag('tr');
    //$form[$modelIndex] = $model;
}
echo CHtml::closeTag('tbody');
echo CHtml::closeTag('table');
echo CHtml::submitButton('Update');
echo CHtml::closeTag('div');
echo $formHead->renderEnd();
?>
<script>
	$(function() {
		$('select')
Пример #4
0
	/**
	* Get the form
	* @param boolean Whether the item can be renamed. If not the name element is
	* made read only.
	* @return CForm Form for the model
	*/
	public function getForm($rename=true) {
		$form = new CForm($this->_formConfig(), $this);

		$elements = $form->getElements();
		if (!$rename)
			$elements['name']->attributes = array('readonly'=>'readonly');

		if ($this->scenario==='update')
			$elements->add('oldName', array(
				'type'=>'hidden',
				'value'=>$this->name,
				'visible'=>true
			));

		return $form;
	}