protected void RadGrid1_PageIndexChanged(object source, Telerik.Web.UI.GridPageChangedEventArgs e)
{
RadGrid2.CurrentPageIndex = e.NewPageIndex;
RadGrid2.DataBind();
RadGrid1.MasterTableView.Items[0].Selected =
true;
RadGrid2.MasterTableView.Items[0].Selected =
true;
}
I have this code ...Basically when I change the page index of RadGrid1 ...The Page in RadGrid2 should also change ...It work perfectly..But I also wanted to select the top row ...The one that I have block doesn't work..Why?Any alternate way of doing things...