On 30.03.2010 16:34 Thiago H. de Paula Figueiredo wrote:

Is it possible to change the class of a grid cell (not just the row or
column) based on the value of the property?
Yes! Just use the rowClass parameter.

But this changes only the class of the tr element like:

<table>
 <tr class="rowClass">
  <td> ... </td>
 </tr>
</table>

What I want to do is customizing the cell, not the row:

<table>
 <tr>
  <td class="cellClass"> ... </td>
 </tr>
</table>

Of course I could change the rowClass and use CSS selectors and the property id but I am wondering if there is another way.

- Stephan

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to