History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: LOOM-161
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Ignacio Coloma
Reporter: Ignacio Coloma
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Loom

l:row does not work properly

Created: 31/Mar/09 06:25 PM   Updated: 31/Mar/09 06:26 PM
Component/s: None
Affects Version/s: None
Fix Version/s: 1.5


 Description  « Hide
PagedTable and PagedList were supposed to specify the CSS class for the current row using a nested l:row tag:

<l:pagedTable>
   <l:row css="${row.readOnly? '' : 'highlight'}"/>
</l:pagedTable>

This has proven not to work, because the RowTag is evaluated too late. Instead, a new rowCssClass attribute should be added to both paged tags:

<l:pagedTable rowCssClass="${row.readOnly? '' : 'highlight'}">

To make this work, EL execution fro this attribute should be delegated to the tag, and not done by the JSP engine. This can be configured in the TLD file.


 All   Comments   Change History      Sort Order:
There are no comments yet on this issue.