This is a migrated thread and some comments may be shown as answers.

[Solved] Telerik grid paging problem

0 Answers 63 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Sunitha
Top achievements
Rank 1
Sunitha asked on 11 Oct 2010, 10:56 PM
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

 

 

function onDataBinding_LicensorsGrid(e) {

 

 

 

var filter = $('#selectedFilter').html();

 

 

 

var recentlyViewedGrid = $('#Licensor').data('tGrid');

 

Url =

 

'/RightsholderAPISvc/_BrowseLicensorByStartLetter/' + filter;

 

recentlyViewedGrid.ajax.selectUrl = Url;

}

Tags
General Discussions
Asked by
Sunitha
Top achievements
Rank 1
Share this question
or