- Actualización framework YII git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@72 77cfc57b-8ef4-1849-9df6-4a38aa5da120
29 lines
664 B
PHP
29 lines
664 B
PHP
|
|
<?php
|
|
$form = $this->beginWidget('CActiveForm', array(
|
|
'id' => 'updateestado-form',
|
|
'enableAjaxValidation' => true,
|
|
'action' => CHtml::normalizeUrl(array('candidato/update', 'id' => $model->id)),
|
|
'htmlOptions' => array(
|
|
'class' => 'form_default',
|
|
),
|
|
));
|
|
?>
|
|
|
|
<?php echo $form->error($model, 'id_estado', array('class' => 'errortext')); ?>
|
|
|
|
<?php echo $form->labelEx($model, 'estado'); ?>
|
|
<?php
|
|
$lista = CHtml::listData(EstadoCandidato::model()->findAll(), 'id', 'descripcion');
|
|
|
|
echo $form->dropDownList(
|
|
$model, 'id_estado', $lista, array(
|
|
'class' => 'mf',
|
|
));
|
|
?>
|
|
|
|
<br clear="all" />
|
|
|
|
<?php $this->endWidget(); ?>
|
|
|