0
一起使用目前我从我的Servlet获得100条记录。rowsPerPage不与dojox.grid.DataGrid
我想每页只显示20条记录,我正在使用dojox.grid.DataGrid,但它仍然显示所有100个记录 请帮忙。
<body class=" claro ">
<span dojoType="dojo.data.ItemFileReadStore" jsId="store1" url="http://localhost:8080/Game/servlet/Hi"></span>
<table dojoType="dojox.grid.DataGrid" store="store1" rowsPerPage="20" rowSelector="20px"
style="width: 100%; height: 500px;">
<thead>
<tr>
<th width="150px" field="name">Namer3</th>
<th width="150px" field="dept">Deptr3</th>
</tr>
</thead>
</table>
</body>