I have a Kendo grid. On that grid there is a pagination which has message.
pageable: {
messages: {
display: {2} - records found, displaying {0} to {1}
}
}
where,
{0} - first index of the record on that page
{1} - last index of the record on that page
{2} - total number of records which I want to specify in response
How will be the structure of the response that is what i want to know. I checked on grid documentation from Kendo - http://docs.kendoui.com/api/framework/datasource#methods-total. But could not find much help. Any help is greatly appreciated.
serverPaging? - OnaBaiserverPagingis set to true - Ashwin