Guest User

Untitled

a guest
Dec 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <c:forEach var="legList" items="${legList}">
  2. <tr>
  3. <td><input type="hidden" class="legid" name="legid"
  4. id=${legList.ledgerId}
  5. value=${legList.ledgerId}>
  6. **<a href="#" id="mylink"
  7. onclick="display(document.getElementById(${legList.ledgerId}).value);
  8. return false">${legList.ledgerName}</a>**
  9. </td>
  10. <td>
  11. <c:forEach var="periodList" items="${periodList}">
  12. <c:forEach var="attriList" items="${attriList}">
  13. <c:if test="${periodList.period eq attriList.periodName &&
  14. legList.ledgerName eq attriList.legName}">
  15. </td>
  16. <td>${attriList.AP}</td>
  17. <td>${attriList.OKL}</td>
  18. <td>${attriList.LM}</td>
  19. <td>${attriList.GL}</td>
  20. </c:if>
  21. </c:forEach>
  22. </c:forEach>
  23. </tr>
  24. </c:forEach>
Add Comment
Please, Sign In to add comment