Completed
Last Updated: 05 May 2016 09:29 by ADMIN
ADMIN
Dimitar
Created on: 18 Mar 2016 07:27
Category: GridView
Type: Bug Report
0
FIX. RadGridView - SelectNextRow method does not work.
To reproduce:
radGridView1.GridNavigator.SelectFirstRow();
for (int i = 0; i < radGridView1.RowCount; i++)
{
    var result = radGridView1.GridNavigator.SelectNextRow(1);
}

Workaround:
- Move to the last row first:
radGridView1.GridNavigator.SelectLastRow();
0 comments