Completed
Last Updated: 17 Nov 2015 16:27 by ADMIN
ADMIN
Stefan
Created on: 03 May 2013 06:52
Category: GridView
Type: Bug Report
2
FIX. RadGridView - fillling the TableAdapter of the grid's DataSource in self-reference hierarchy freezes the grid
To reproduce: bind the grid to self reference data source, and on a button click, Fill the TableAdapter

Workaround: clear the relations to clear the cache and add them back after the adapter is filled:
RadGridView1.Relations.Clear()
        Me.Table1TableAdapter.Fill(Me.Database8DataSet.Table1)
        Me.RadGridView1.Relations.AddSelfReference(Me.RadGridView1.MasterTemplate, "TaskID", "ParentTask")
0 comments