Hello,

actually this is not really a MyFaces problem but hopefully someone can help me although. I have got a panel grid with two columns and a few rows. In this panel grid I want to have something like a data table or a data list but not as separate table in a column of the panel grid but only the rows i. e. without a own <table> tag. I tried to implement my own iterator which writes only <tr> and <td> tags without the <table> tags because I have already <table> tags from the panel grid. Unfortunately the panel grid always creates <table> tags around my iterator. Hopefully a small illustration will be helpfully for understanding what I want:

This is what I get:
----------------------------------
| 11 col        | 12 col         |
----------------------------------
| 21 col        | 22 col         |
----------------------------------
| 31 col        | 32 col         |
----------------------------------
|---------------|                |
| dl1   | dl2   |                |
|---------------|                |
| dl3   | dl4   |                |
|---------------|                |
----------------------------------

and this I want to have:
----------------------------------
| 11 col        | 12 col         |
----------------------------------
| 21 col        | 22 col         |
----------------------------------
| 31 col        | 32 col         |
----------------------------------
| dl1           | dl2            |
----------------------------------
| dl3           | dl4            |
----------------------------------

Thank you for any kind of help!

Markus

Reply via email to