]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Tabla.php
Se agrego la funcion addMenuVertical, esta permite agregar un menu vertical a la...
[mecon/meconlib.git] / lib / MECON / HTML / Tabla.php
index 3f31b1b2f482c001c546fea608ab8febe4b0b2b7..f9f48a464e7b6a347b5799a361eccce5d938f571 100644 (file)
@@ -59,7 +59,7 @@ class Tabla extends HTML_Table {
      */
     function Tabla($attrs = null) 
     {
-        $this->_conf = include 'Tabla/conf_Tabla.php'; // Obtengo los valores particulares de configuracion
+        $this->_conf = include 'MECON/HTML/Tabla/conf_Tabla.php'; // Obtengo los valores particulares de configuracion
         // Seteo los atributos para la tabla
         $this->_attrs = $this->_conf['atributos']['tabla_comun'];
         //Genero el objeto HTML_Table
@@ -258,16 +258,16 @@ class Tabla extends HTML_Table {
     function toHtml($simple = 0)
     {
         // Agregar la tabla de fondo.
-        if ($simple == 0) {
-            $tmp = $this->_parseAttributes($this->_conf['atributos']['tabla_contenedora']);
-            $tmp['width'] = $this->_attrs['width'];
-            $tabla_externa =  new HTML_Table($tmp);
-            $tabla_externa->setCellContents(0, 0, parent::toHtml());
-            $tabla_externa->setCellAttributes(0, 0, $this->_conf['atributos']['celda_contenedora']);
-            $result = $tabla_externa->toHtml();    
-        }
-        else {
+        if ($simple) {
             $result = parent::toHtml();
+        } else {
+            $contenedora = $this->_conf['atributos']['tabla_contenedora'];
+            $contenedora['width'] = $this->getAttribute('width');
+            $this->updateAttributes(array('width' => '100%'));
+            $tabla_externa =  new HTML_Table($contenedora);
+            $tabla_externa->addRow(array(parent::toHtml()),
+                $this->_conf['atributos']['celda_contenedora']);
+            $result = $tabla_externa->toHtml();    
         }
 
         return $result;