]> git.llucax.com Git - mecon/meconlib.git/blobdiff - HTML/test/prueba_tabla.php
(no commit message)
[mecon/meconlib.git] / HTML / test / prueba_tabla.php
index b79e32063387265b222957fb44376c841b2c88f9..be669bf98d5ece2ccae2ef9ec8dc783f13b02b39 100644 (file)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <title>
 </title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <title>
 </title>
-<link rel="StyleSheet" href="./../Tabla/php/Tabla/tabla_estilos.css">
+<link rel="StyleSheet" href="./../php/Tabla/tabla_estilos.css">
 </head>
 <body bgcolor="#FFFFFF" color="#000000" align="center">
 <table width="760" align="center">
 </head>
 <body bgcolor="#FFFFFF" color="#000000" align="center">
 <table width="760" align="center">
 
 <?php
 
 
 <?php
 
-    require_once './../Tabla/php/Tabla.php';
+    require_once './../php/Tabla.php';
 
 
-    $TABLA = new Tabla ();
+    $TABLA = new Tabla ('width="500" align="right"');
 
 
-    $row =  array (
-                '0' => 'Col 1',
-                '1' => 'Col 2',
-            );
+    $row =  array ('R0C0','R1C1','R1C2','R2C3','R2C4','R2C5','R2C6','R2C7','R2C8','R2C9');
     
     
-    $TABLA->agregarFilaCabecera($row);            
+    $TABLA->agregarFilaCabecera($row); 
 
 
-    $row =  array (
-                '0' => 'Fila 1',
-                '1' => 'Fila 2',
-            );
-    
+    $row =  array ('R1C0','R1C1','R1C2','R2C3','R2C4','R2C5','R2C6','R2C7','R2C8','R2C9');    
+    $TABLA->agregarFila($row);
+
+    $row =  array ('R2C0','R2C1','R2C2','R2C3','R2C4','R2C5','R2C6','R2C7','R2C8','R2C9');
     $TABLA->agregarFila($row);
 
     $TABLA->agregarFila($row);
 
+    $row =  array ('R3C0','R3C1','R3C2','R3C3','R3C4','R3C5','R3C6','R3C7','R3C8','R3C9');
+    $TABLA->agregarFila($row);
+
+    $TABLA->colSpan(0, 0,10);
+    $TABLA->rowSpan(1, 0,3);       
+    $TABLA->rowSpan(1, 1,3);    
+    $TABLA->colSpan(1, 2,8);
+    $TABLA->colSpan(2, 2,2);
+    $TABLA->colSpan(2, 4,2);
+    $TABLA->colSpan(2, 6,2);
+    $TABLA->colSpan(2, 8,2);
+
+    
     $tohtml = $TABLA->toHtml();
     
     print $tohtml;
     $tohtml = $TABLA->toHtml();
     
     print $tohtml;