Following is my code to display rows using display-tag
in struts 1.3
but it always shows: Nothing found to display
. I have checked ResultSet
and ArrayList
object, they all contain data.
<display:table export="true" id="data"
name="sessionScope.MultipleStudentsDAO.studentList"
requestURI="/mssrv.do" pagesize="5">
<display:column property="rollNo" title="ROLL NO" sortable="true" />
<display:column property="name" title="NAME" sortable="true" />
<display:column property="branch" title="BRANCH" sortable="false" />
</display:table>