Completed
Last Updated: 10 Jul 2012 02:47 by ADMIN
ADMIN
Stefan
Created on: 10 Jul 2012 02:47
Category: GridView
Type: Bug Report
2
FIX. RadGridView - incorrect RowIndex after populating with data in unbound mode
To reproduce:
rgvTest.BeginUpdate()
For ixTest As Integer = 1 To 2000
Dim rgvrTest As GridViewRowInfo = rgvTest.Rows.AddNew
rgvrTest.Cells(0).Value = "Value " & ixTest.ToString
Next
rgvTest.EndUpdate()
rgvTest.Rows(0).IsCurrent = True
MessageBox.Show(rgvTest.CurrentCell.RowIndex.ToString)
0 comments