This question is locked. New answers and comments are not allowed.
hi
i need to get spacific row in radgridview
i tried this:
foreach (var row in this.gridview1.ChildrenOfType<GridViewRow>())
{
i++;
if (i == 200)
{
row.IsSelected = true;
territorymanagementactionitems.BringIndexIntoView(200);
}
}
but after ~16 rows the debugger goes out from loop (i have more than 200 rows)
i need to get spacific row in radgridview
i tried this:
foreach (var row in this.gridview1.ChildrenOfType<GridViewRow>())
{
i++;
if (i == 200)
{
row.IsSelected = true;
territorymanagementactionitems.BringIndexIntoView(200);
}
}
but after ~16 rows the debugger goes out from loop (i have more than 200 rows)