Web page editor design view issue when creating a dynamic table [message #212596] |
Fri, 18 April 2008 16:12 |
Eclipse User |
|
|
|
Originally posted by: dmeurer.skywaysoftware.com
Hello,
When I'm building a dynamic JSP table that iterates around the <TR> tags,
the Web Page Editor design view scrambles the iterated table rows as one
long column over the table and anything below the table. Almost as if the
iterated rows are a DIV that is positioned absolutely to the left. A code
example is below using JSTL for the iteration.
A couple questions:
1. Will this be resolved in Eclise 3.4?
2. Is there a better way to achieve this iteration in the current version
so we can access the iterated table rows via the design view.
Thanks so much for the help!
**********
<html>
<body>
<table>
<tr>
<td>Person</td>
<td>Ages</td>
</tr>
<c-rt:forEach var="person" items="<%= names %>">
<tr>
<td>Name<c:out value="${person}" /></td>
<td>Age<c:out value="${ages[i]}" /></td>
</tr>
</c-rt:forEach>
</table>
This is below the table
</body>
</html>
|
|
|
Powered by
FUDForum. Page generated in 0.02844 seconds