Hi all,
I've an issue with pagination with an HTML grid.
First I've generated a grid (from server-side code) which is "converted" in a KendoGrid from clien-side code:
but I didn't succedeed,
Any idea?
Note: The grid is built from server-side code, then redered and converted to KendoGrid, all things work as expected but page links are not displayed
I've an issue with pagination with an HTML grid.
First I've generated a grid (from server-side code) which is "converted" in a KendoGrid from clien-side code:
<table id="grid">
<thead>
<tr>
<th data-field="field1"></th>
<th data-field="Id">MyFiels</th>
</th>
</thead>
<tbody>
<tr><td> (and so on..)
</tbody>
</table>
Now I convert the grid using the following code:
$("#grid").kendoGrid({
sortable: true,
selectable: "row",
height: 350,
pageable: {
refresh: false,
pageSize: 30
}
});
I've trie to set a kind of "RecordCount" property in order to build a number of page links according to PageSize and "TotalRecordCount"
I've tried to set Schema.
schema: {total: 1000 }
but I didn't succedeed,
Any idea?
Note: The grid is built from server-side code, then redered and converted to KendoGrid, all things work as expected but page links are not displayed