source: sipei/modules/views/help/style-grid.html @ ffa4103

drupal-6.x
Last change on this file since ffa4103 was ffa4103, checked in by Luis Peña <lpena@…>, 12 años ago

Cambiando el nombre de modulos a modules

  • Propiedad mode establecida a 100755
File size: 1.1 KB
Línea 
1<!-- $Id: style-grid.html,v 1.3 2008/10/14 18:20:25 merlinofchaos Exp $ -->
2The <strong>grid</strong> style will display each row of your view within a grid. You may customize the number of columns, though it defaults to 4. A grid looks like this:
3
4<table width="100%">
5<tr><td>row 1</td><td>row 2</td><td>row 3</td><td>row 4</td></tr>
6<tr><td>row 5</td><td>row 6</td><td>row 7</td><td>row 8</td></tr>
7<tr><td>row 9</td><td>row 10</td><td>row 11</td><td>row 12</td></tr>
8<tr><td>row 13</td><td>row 14</td><td>row 15</td><td>row 16</td></tr>
9</table>
10
11The above uses the 'horizontal' alignment, where rows are added into the grid from left to right.
12
13With a vertical alignment, rows will be placed from top to bottom, like this:
14<table width="100%">
15<tr><td>row 1</td><td>row 5</td><td>row 9</td><td>row 13</td></tr>
16<tr><td>row 2</td><td>row 6</td><td>row 10</td><td>row 14</td></tr>
17<tr><td>row 3</td><td>row 7</td><td>row 11</td><td>row 15</td></tr>
18<tr><td>row 4</td><td>row 8</td><td>row 12</td><td>row 16</td></tr>
19</table>
20
21This style uses a <a href="topic:views/style-row">row style</a> to determine what each row will look like.
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.