//CREO LOS OBJETO NECESARIOS {{{
$FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
// }}}
//CREO LOS OBJETO NECESARIOS {{{
$FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
// }}}
$FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
$FORM->addElement ('hidden' , 'id_sistema');
$FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
$FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
$FORM->addElement ('hidden' , 'id_sistema');
$FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
- $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50'));
+ $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual'));
$FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
$FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
$FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion');
$FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
$FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
$FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
$FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
$FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion');
$FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
$FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
- $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar');
+ $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
$FORM->addGroup($group,'botones');
// }}}
//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
$FORM->addGroup($group,'botones');
// }}}
//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
$FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
$FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required');
$FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
$FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
$FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required');
$FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
- if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
- $FORM->addRule('fecha_inicio' , 'La fecha no es válida' , 'fecha' );
- $FORM->addRule('fecha_fin' , 'La fecha no es válida' , 'fecha' );
- $FORM->addRule('fecha_implementacion', 'La fecha no es válida' , 'fecha' );
- }
- $FORM->addRule('contacto' , 'El campo contacto es obligatorio' , 'required');
+// if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
+ $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha');
+ $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha');
+ $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
+// }
+ $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
if ($tmp = $SISTEMA->getFechaFin()) {
$fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
'F' => $tmp->format("%m"),
'Y' => $tmp->format("%Y"),
));
if ($tmp = $SISTEMA->getFechaFin()) {
$fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
'F' => $tmp->format("%m"),
'Y' => $tmp->format("%Y"),
));
if ($tmp = $SISTEMA->getFechaImplementacion()) {
$fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
'F' => $tmp->format("%m"),
'Y' => $tmp->format("%Y"),
));
}
if ($tmp = $SISTEMA->getFechaImplementacion()) {
$fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
'F' => $tmp->format("%m"),
'Y' => $tmp->format("%Y"),
));
}
$aceptar->setValue('Modificar');
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
$aceptar->setValue('Eliminar');
$aceptar->setValue('Modificar');
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
$aceptar->setValue('Eliminar');