I have used a telerik grid in my application.
The resultset has around 50 pages. Each page contains 10 records.
I am using pagination in the grid, in which I am using following code:
Control numericPagerControl = gridPager.GetNumericPager();
Control placeHolder = gridPager.FindControl(NUM_PAGER_CONTROL_ID);
placeHolder.Controls.Add(numericPagerControl);
Now, the page numbers are appearing as below:
1 2 3 4 5 6 7 8 9 10 ....
But because of space constraints in the header, I want to display only following string:
1 2 3 4 5 ....
Please revert asap.