Completed
Last Updated: 03 Oct 2012 04:01 by ADMIN
ADMIN
Stefan
Created on: 03 Oct 2012 04:01
Category:
Type: Bug Report
3
FIX. RadDropDownList - binging the control in a BeginUpdate/EndUpdate block will cause the control to select an invalid item
To reproduce:
   Dim dt As New DataTable
        dt.Columns.Add("Name")
        For index = 1 To 20
            dt.Rows.Add("Some value " & index)
        Next

        With ddLLessonEmployee
            .BeginUpdate()
            .DataSource = dt
        
0 comments