0
我需要爲我的一些DataGrids 添加分頁功能,我只是一步步向前邁進。 首先,我嘗試將DataGrid的'rowsPerPage'屬性 設置爲某個值,例如5。但是它對 顯示的網格沒有影響。我的意思是顯示的行數大於 設置爲'rowsPerPage'的值。DataGrid的rowsPerPage屬性不起作用
<table dojoType="dojox.grid.DataGrid" store="tags" rowsPerPage =3
style="width: 100%; height: 500px;">
<thead>
<tr>
<th width="150px" field="dept">Namey</th>
<th width="150px" field="name">Depty</th>
</tr>
</thead>
</table>
請告訴我如何每次只顯示3個結果。
我一直在早上搜索網頁,但無濟於事。任何輸入將不勝感激。
請幫忙。