Hi, Arash,
You can use the following workaround:
private void FindAndSelectRow()
{
foreach (GridViewRowInfo r in radGridView3.Rows)
{
if (r.Cells["ItemProperty"].Value.ToString() == "string 20")
{
r.IsSelected = true;
r.IsCurrent = true;
//workarund
int pageIndex = radGridView3.MasterView.ViewTemplate.DataView.GetItemPage(r);
radGridView3.MasterView.ViewTemplate.DataView.MoveToPage(pageIndex);
radGridView3.TableElement.ScrollToRow(r);
break;
}
}
}
Regards,
Nadya
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.