One way is to disable paging, then do Rebind , then Rebind over all the elements, find the page where the element should be located, and then enable paging. Another way is to make a separate Rebind on the page, for example:
int count = RadGrid1.MasterTableView.PageCount; for (int i = 0; i < count; i++) { RadGrid1.CurrentPageIndex = i; RadGrid1.Rebind(); foreach (GridDataItem dataItem in RadGrid1.Items) { var yourID = dataItem.GetDataKeyValue("YourID"); if (yourID == insertedItemID) break; } } RadGrid1.Rebind();
For more information and an example, check out the Telerik forums. These links are useful:
source share