]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Tabla.php
- Cambio un query a BASE.Tabla
[mecon/meconlib.git] / lib / MECON / HTML / Tabla.php
index 378653b2e81c3fdfce1dfafa5c14f9cac3c9cec5..f5cdad0ff98daae9b6d8e12fb5d175a3ba11c349 100644 (file)
@@ -305,6 +305,13 @@ class MECON_HTML_Tabla extends HTML_Table {
                     $rta = array_merge($rta, $tmp);
                     $rta[$attr] = $attr;
                     break;
+                case 'comun_clara':
+                    $tmp = $this->_conf['atributos']['celda_comun'];
+                    $tmp['class'].= '_clara';
+                    $rta = array_merge($rta,
+                            $this->_conf['atributos']["celda_comun"]);
+                    $rta[$attr] = $attr;
+                    break;
                 default:
                     trigger_error("No se permite setear el atributo $attr", E_USER_ERROR);
             }
@@ -440,7 +447,7 @@ class MECON_HTML_Tabla extends HTML_Table {
         }
         switch ($id) {
             case 'nuevo':
-                $img = new MECON_HTML_Image('/MECON/images/general_nuevo', '->');
+                $img = new MECON_HTML_Image('/MECON/images/general_nuevo', ' >>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Nuevo');
@@ -449,7 +456,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'derecha');
                 break;
             case 'nuevos':
-                $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', '->');
+                $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', ' >>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Nuevos');
@@ -458,7 +465,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'derecha');
                 break;
             case 'buscar':
-                $img = new MECON_HTML_Image('/MECON/images/general_lupa', 'Q');
+                $img = new MECON_HTML_Image('/MECON/images/general_lupa', ' ?>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Buscar');
@@ -467,7 +474,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'derecha');
                 break;
             case 'siguiente':
-                $img = new MECON_HTML_Image('/MECON/images/general_posterior', '->');
+                $img = new MECON_HTML_Image('/MECON/images/general_posterior', ' >>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Siguiente');
@@ -476,7 +483,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updatePie($link, 'derecha');
                 break;
             case 'volver':
-                $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<-');
+                $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<');
                 // Si no tiene titulo, le pone titulo por defecto.
                 $cont = $link->getContents() ? $link->getContents() : 'Volver';
                 $link->setContents($img);
@@ -484,7 +491,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'izquierda');
                 break;
             case 'anterior':
-                $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<-');
+                $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<');
                 // Si no tiene titulo, le pone titulo por defecto.
                 $cont = $link->getContents() ? $link->getContents() : 'Anterior';
                 $link->setContents($img);