I'm using struts1.3.8.
when I'm using scriptlet to get the data in the table and displaying,it is showing all the records at a time. But i want to display per page 10.
I'm trying to implement pagination concept in jsp page using display tag. But The result always showing is "nothing found to display".
This is the code i'm using..
<display:table name="requestScope.SearchForm.searchResult" class="SearchForm" requestURI="" pagesize="10" >
<display:column property="policyNumber" title="Policy Number" sortable="true" />
<display:column property="version" title="version" sortable="true" />
</display:table>
Here SearchForm is the form bean and searchResult is the property in that. It is a bean with multiple attributes which i have to display in the form of table.
Is there any mistake in my code?
Is there any other way to implement pagination concept?
Any idea is highly apprecitable
Implemented using datatable concept which was pretty easy and useful.