]> git.llucax.com Git - mecon/intranet.git/commitdiff
Acomode para usar con el renderer nuevo
authorMartín Marrese <marrese@gmail.com>
Tue, 19 Aug 2003 17:49:23 +0000 (17:49 +0000)
committerMartín Marrese <marrese@gmail.com>
Tue, 19 Aug 2003 17:49:23 +0000 (17:49 +0000)
sistema/www/css/servicios_agenda.css
sistema/www/servicios/agenda/agenda1.php

index db28f335c9d67739854c3da0a08c89999330acf5..5c4f853ff31501e94080572d58ae47b8275f7015 100644 (file)
@@ -1,7 +1,7 @@
 \r
 .textoazul { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; font-weight: normal }\r
 .titulo_form { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 11pt; font-style: normal; line-height: normal; background-position: centre centre; text-align: centre; vertical-align: middle ; font-weight: normal}\r
 \r
 .textoazul { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; font-weight: normal }\r
 .titulo_form { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 11pt; font-style: normal; line-height: normal; background-position: centre centre; text-align: centre; vertical-align: middle ; font-weight: normal}\r
-.txt1 { COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; background-position: left centre; text-align: left; vertical-align: top; font-weight: normal }\r
+.txt1 { COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; background-position: left centre; vertical-align: top; font-weight: normal }\r
 .txt2 { COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 8pt; font-style: normal; line-height: normal; background-position: left top; text-align: left; vertical-align: top; font-weight: normal }\r
 .txt_naranja { COLOR: #FF3300; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; font-weight: bold}\r
 .txt_derecha { COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; background-position: right centre; text-align: right; vertical-align: middle; font-weight: normal }\r
 .txt2 { COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 8pt; font-style: normal; line-height: normal; background-position: left top; text-align: left; vertical-align: top; font-weight: normal }\r
 .txt_naranja { COLOR: #FF3300; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; font-weight: bold}\r
 .txt_derecha { COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; background-position: right centre; text-align: right; vertical-align: middle; font-weight: normal }\r
index 252b984355d4a5506330822d0878dc1b5a403652..f5e30aff27d22b0c85bf9189c371cb7bb84dfacd 100644 (file)
@@ -23,9 +23,14 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
+
+require_once 'MECON/general.php';
+prepend_include_path('/home/mmarrese/public_html/meconlib/lib/');
+
 //REQUIRE ONCE {{{
 require_once '../../../local_lib/Servicios/Agenda.php';
 require_once 'HTML/Table.php';
 //REQUIRE ONCE {{{
 require_once '../../../local_lib/Servicios/Agenda.php';
 require_once 'HTML/Table.php';
+require_once 'MECON/HTML/Tabla.php';
 require_once '../../../local_lib/HTML_DietMarco.php';
 require_once 'MECON/HTML/QuickForm.php';
 require_once 'HTML/Image.php';
 require_once '../../../local_lib/HTML_DietMarco.php';
 require_once 'MECON/HTML/QuickForm.php';
 require_once 'HTML/Image.php';
@@ -39,8 +44,10 @@ if (DB::isError($DB)) {
 }
 //}}}
 //CREO LOS OBJETOS NECESARIOS {{{
 }
 //}}}
 //CREO LOS OBJETOS NECESARIOS {{{
+$TABLAFORM = new Tabla ('width="500"', 'servicio');
 $MARCO     = new HTML_DietMarco('servicios');
 $FORM      = new MECON_HTML_QuickForm('agenda', 'post', 'agenda2', '', array ('onSubmit' => "return validar(this)", 'action' => ''));
 $MARCO     = new HTML_DietMarco('servicios');
 $FORM      = new MECON_HTML_QuickForm('agenda', 'post', 'agenda2', '', array ('onSubmit' => "return validar(this)", 'action' => ''));
+$FORM->renderer->setTable($TABLAFORM);
 $TABLA     = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"');
 $IMG1      = new HTML_Image('../../images/servicios_agenda_lupa.gif');
 $IMG2      = new HTML_Image('../../images/servicios_agenda_mail.gif');
 $TABLA     = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"');
 $IMG1      = new HTML_Image('../../images/servicios_agenda_lupa.gif');
 $IMG2      = new HTML_Image('../../images/servicios_agenda_mail.gif');
@@ -81,8 +88,6 @@ $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
 //}}}
 //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');
-$FORM->setRendererOpts('width="500"');
 //}}}
 //ARMO LA TABLA {{{
 $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));
 //}}}
 //ARMO LA TABLA {{{
 $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));