//}}}
//CREO LOS OBJETOS NECESARIOS {{{
$MARCO = new HTML_DietMarco('servicios');
-$FORM = new MECON_HTML_QuickForm('agenda', '', '', '', array ('method' => 'post', 'onSubmit' => "return validar(this)", 'action' => ''));
+$FORM = new MECON_HTML_QuickForm('agenda', 'post', 'agenda2', '', array ('onSubmit' => "return validar(this)", 'action' => ''));
$TABLA = new HTML_Table('width="760"');
$IMG1 = new HTML_Image('../../images/servicios_agenda_lupa.gif');
$IMG2 = new HTML_Image('../../images/servicios_agenda_mail.gif');
$grupo2[] =& HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'../../servicios.php\';return false;'));
$botones =& $FORM->addGroup($grupo2, 'botones');
//}}}
+//AGREGO LAS REGLAS DE VALIDACION QUE PUEDO AL FORM {{{
+$FORM->addRule('interno','El interno debe ser numerico','numeric');
+//}}}
//ACOMODO EL FORM {{{
$MARCO->addStyleSheet(PATH_RAIZ.'css/servicios_agenda.css'); //EL PROBLEMA QUE ESTO LO NECESITO PARA QUE FUNCIONE EL RENDERER NUEVO
$FORM->setRenderer('MECON_HTML_QuickForm_Renderer_Tabla_Servicios');
$TABLA->addRow(array($FORM), 'colspan="3"');
//}}}
//AGREGO EL JAVASCRIPT DE VALIDACION {{{
+//Este js esta copiado del epl original, ya que con los campos del formulario
+//llamados de la misma manera las reglas de validacion ya se cumplen.
$JS = <<<EOT
function validar(theForm)
{