Completed
Last Updated: 20 Aug 2019 11:34 by ADMIN
Release R3 2019
Frank
Created on: 22 Jul 2019 12:07
Category: GanttView
Type: Bug Report
1
RadGanttView: RowNotInTableException when deleting a record directly from the source collection

Please refer to the attached sample project and run it. Select a random item and press the button. You will obtain the error. If no selection is available, the item is removed as expected. 

Workaround: use Begin/EndUpdate block while deleting a record from the DataTable:

        Me.RadGanttView1.BeginUpdate()
        _dataset.Tables("Tasks").Rows.RemoveAt(2)
        Me.RadGanttView1.EndUpdate()

0 comments