Hi,
We are trying to use RadGrid to display results from SharePoint Search. We are using custom paging and getting only 10 pages at any time.
We tried using Custom paging for Radgrid to get correct total count and pager.
Paging for sharepoint behaves in a different way and we need to change URL for pager links to get it working.
Current URL for any pager item is similar to below:
javascript:__doPostBack('ctl00$m$g_97f5302f_eb53_4e7e_ad4d_174495682a37$ctl00$InvoicesGrid$ctl00$ctl03$ctl01$ctl05','')
We need to change it to something similar to below…
http://<sitename>/Sites/Search/Pages/results.aspx?k=ABC%3ALAB&start1=1
where start1 indicates the starting index of current page i.e PageSize * PageIndex + 1
Thanks.