_search.php 856 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<div class="wide form">

<?php $form = $this->beginWidget('GxActiveForm', array(
	'action' => Yii::app()->createUrl($this->route),
	'method' => 'get',
)); ?>

	<div class="row">
		<?php echo $form->label($model, 'PK_MZGTTIPOSEVENTOS'); ?>
		<?php echo $form->textField($model, 'PK_MZGTTIPOSEVENTOS'); ?>
	</div>

	<div class="row">
		<?php echo $form->label($model, 'MZGTTIPOSEVENTOS_DESCRIPCION'); ?>
		<?php echo $form->textField($model, 'MZGTTIPOSEVENTOS_DESCRIPCION', array('maxlength' => 255)); ?>
	</div>

	<div class="row">
		<?php echo $form->label($model, 'MZGTTIPOSEVENTOS_CODIGO'); ?>
		<?php echo $form->textField($model, 'MZGTTIPOSEVENTOS_CODIGO', array('maxlength' => 50)); ?>
	</div>

	<div class="row buttons">
		<?php echo GxHtml::submitButton(Yii::t('app', 'Buscar')); ?>
	</div>

<?php $this->endWidget(); ?>

</div><!-- search-form -->