<?php
/* @var $this LiquidacionController */
/* @var $model Liquidacion */
/* @var $form CActiveForm */
?>

<div class="form">

<?php $form=$this->beginWidget('bootstrap.widgets.TbActiveForm', array(
	'id'=>'liquidacion-migra_liquidacion-form',
	// Please note: When you enable ajax validation, make sure the corresponding
	// controller action is handling ajax validation correctly.
	// See class documentation of CActiveForm for details on this,
	// you need to use the performAjaxValidation()-method described there.
	'enableAjaxValidation'=>false,
)); ?>

	<p class="note">Campos con <span class="required">*</span>son requeridos.</p>

	<?php echo $form->errorSummary($model); ?>

	<div class="row-fluid">
        <?php echo $form->dropDownListRow($model,'migrar',array('1'=>'APROBADAS','2'=>'PAGADAS'),array('prompt'=>'-- seleccione --'))?>
        </div>

	<div class="row-fluid buttons">
		<?php $this->widget('bootstrap.widgets.TbButton', array(
			'buttonType'=>'submit',
			'type'=>'primary',
                        //'htmlOptions'=>array('onclick'=>'envia()'),
			'label'=>'Migrar',
		)); ?>
	</div>

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

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