Hi all,
This the code on my jsp page.
<%
.............
String query = "SELECT ID \"id\", NAME \"name\",
ADDRESS \"address\" FROM USERS";
ResultSet rs = stmt.executeQuery(query);
resultSet = new
org.apache.commons.beanutils.RowSetDynaClass(rs,
false);
.......
request.setAttribute("feedback_display", resultSet);
%>
<display:table pagesize="10" id="fbdisplay"
class="report" name="feedback_display.rows">
<display:column title="No" style="text-align:center">
<c:out value="${fbdisplay_rowNum}" />
</display:column>
<display:column property="name" title="Name" />
<display:column property="address" title="Address" />
<display:column title="ID" style="text-align:center">
<c:out value="${fbdisplay.id}" />
</display:column>
</display:table>
The line <c:out value="${fbdisplay_rowNum}" /> works
properly, but <c:out value="${fbdisplay.id}" /> does
not work. The page output is terminated just before
the table is displayed and no exception is also
thrown.
What am i doing wrong here??
thanks in advance.
Praveen
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
_______________________________________________
displaytag-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/displaytag-user