This question is locked. New answers and comments are not allowed.
We are using a telerik grid(called LicensorGrid). There are several buttons on the screen for A, B, C, D etc. and for binding the
grid AND being able to page back and forth we had to do something like this.......
We were able to bind the grid and page back and forth successfully. But the problem we are having right now is if we are not on the first page....suppose we are on page 4, when we click on C, it will show all the data for C correctly starting from beginning....But will still say "Displaying items 61 - 80 of 211" instead of starting at 0 for the new click of the filter button. In this JQuery, is there
anyway to force the paging to say displaying 1 - 11 of 211 instead of carrying over from the previous filter buttons click
grid AND being able to page back and forth we had to do something like this.......
We were able to bind the grid and page back and forth successfully. But the problem we are having right now is if we are not on the first page....suppose we are on page 4, when we click on C, it will show all the data for C correctly starting from beginning....But will still say "Displaying items 61 - 80 of 211" instead of starting at 0 for the new click of the filter button. In this JQuery, is there
anyway to force the paging to say displaying 1 - 11 of 211 instead of carrying over from the previous filter buttons click
function onDataBinding_LicensorsGrid(e) {
var filter = $('#selectedFilter').html();
var recentlyViewedGrid = $('#Licensor').data('tGrid');
Url =
'/RightsholderAPISvc/_BrowseLicensorByStartLetter/' + filter;
recentlyViewedGrid.ajax.selectUrl = Url;
}