I want a dandelion datatable to show 15 rows at a time instead of the default 10 rows. Can someone show me how to accomplish this?
Here is some code that I displaying 10 rows at a time with pagination controls to scroll between sets of 10 rows:
<datatables:table id="mydata" data="${mydataset}" cdn="true" row="mr" theme="bootstrap2"
cssClass="table table-striped" paginate="true" info="false"
cssStyle="width: 150px;" align="left" dom="frtp">
<datatables:column title="Concept Type" cssStyle="width: 150px;" display="html">
<c:out value="${mr.something}"/>
</datatables:column>
</datatables:table>