pageable.refresh Boolean
(default: false)
If set to true
the pager will display the refresh button. Clicking the refresh button will refresh the ListView.
Example - show the refresh button
<div id="listView"></div>
<script type="text/x-kendo-tmpl" id="template">
<div class="product-view k-widget">
<dl>
<dt>Product Name</dt>
<dd>#:ProductName#</dd>
</dl>
</div>
</script>
<script>
$("#listView").kendoListView({
dataSource: {
data: [
{ ProductName: "Tea", ProductID: 1 },
{ ProductName: "Coffee", ProductID: 2 },
{ ProductName: "Ham", ProductID: 3 },
{ ProductName: "Bread", ProductID: 4 }
]
},
template: kendo.template($("#template").html()),
navigatable: true,
pageable: {
pageSize: 2,
refresh: true
}
})
</script>