Is it possible to dynamically generate pairs of columns using RichFaces' rich:columns
component? (Version 3.3.0)
Ideally, I'd like to generate something resembling the following:
+------+--------------+--------------+---------------
| Name | 1/2/09 | 2/2/09 | 3/2/09 (etc.)
+------+------+-------+------+-------+-----------
| .... | Time | Value | Time | Value |
+------+------+-------+------+-------+-------
| .... | Time | Value | Time | Value |
... that is, a single header cell per column-pair, with the two columns underneath. However, the combined header is not that important.
I've consulted the docs, and while they suggest that a colspan
can (somehow) be used, they don't offer any examples.
Any help appreciated!