Ignore:
Timestamp:
Mar 3, 2011, 2:52:08 PM (13 years ago)
Author:
gav
Message:

Fix early closed table row on clickableOdd/clickableEven list tables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/inventoryItemDetailed/show.gsp

    r727 r836  
    322322                                    <tbody>
    323323                                        <g:each in="${inventoryMovementList}" status="i" var="movements">
    324                                             <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
     324                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}">
    325325
    326326                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
     
    440440                                    <tbody>
    441441                                        <g:each in="${inventoryItemPurchases}" status="i" var="purchase">
    442                                             <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
     442                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}">
    443443
    444444                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
Note: See TracChangeset for help on using the changeset viewer.