Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » ServerTools (WTP) » Web page editor design view issue when creating a dynamic table
Web page editor design view issue when creating a dynamic table [message #212596] Fri, 18 April 2008 20:12
Eclipse UserFriend
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>
Previous Topic:web service - "The service implementation selected is invalid"
Next Topic:The service implementation selected is invalid.
Goto Forum:
  


Current Time: Sat Apr 20 02:27:31 GMT 2024

Powered by FUDForum. Page generated in 0.02703 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top