Styles

ID Name Email Status Comments
28287 Et Voluptua et-voluptua@erat.com MAGNA magna voluptua...
20598 Lorem Et Lorem-et@sit.com SEA sit ea...
67905 Diam No diam-no@et.com VOLUPTUA sadipscing Lorem...
74507 Gubergren Diam gubergren-diam@rebum.com CONSETETUR eos invidunt...
77390 At Diam At-diam@sed.com ET accusam consetetur...
21104 Voluptua Aliquyam voluptua-aliquyam@amet.com GUBERGREN ipsum ut...
12798 Invidunt Erat invidunt-erat@aliquyam.com SIT duo ipsum...
92520 Eos Ipsum eos-ipsum@gubergren.com DUO gubergren voluptua...
29837 Labore Voluptua labore-voluptua@consetetur.com MAGNA sed sea...
52188 Stet Voluptua Stet-voluptua@ipsum.com EST vero sea...

You actually have a lot of flexibility in how the table is displayed, but of course you should probably stay close to the defaults in most cases. You adjust the look of the table via two methods, 1) pass through table and column attributes, and 2) Style sheets which are described below.

Click through the above links to see different style examples of the same basic table. Most of the differences in appearance between the tables below are achieved via only stylesheet changes.

Html attributes

You can assign to the <display:table> tag any standard html attribute (es. cellspacing, cellpadding), and it will be included in the rendered table.

Likewise, you can assign to the <display:column> tag any standard html attribute and it will be included in any <td> tag of the rendered table. You can also specify a class to be used only for the column header (<th>) adding a headerClass attribute.

Note: the attribute styleClass used for the <table> and <column> tag in previous version of the taglibrary is deprecated in favor of the standard html class attribute.

Style Sheets

While attributes might be the most comfortable way to change the appearance of your table, using style sheets is more powerful. We use style sheets to make the header a dark color, make rows an alternate color, and set the fonts within the cells to a smaller version of verdana. As the <display:table> tag is drawing, it assigns the following class names to elements.

You can then create a style sheet and assign attributes such as font size, family, color, etc... to each of those class names and the table will be shown according to your styles.

classassigned to
oddassigned to the tr tag of all odd numbered data rows
evenassigned to the tr tag of all even numbered data rows
sortedassigned to the th tag of the sorted column
order1assigned to the th tag of the sorted column if sort order is ascending
order2assigned to the th tag of the sorted column if sort order is descending