Completed
Last Updated: 24 Oct 2016 08:55 by ADMIN
ADMIN
Hristo
Created on: 15 Sep 2016 06:53
Category: GridView
Type: Bug Report
1
FIX. RadGridView - when the grid`s BindingContext is null and it is bound to an ObservableCollection, a change in the data bound collection results in a NullReferenceException
The issue can be reproduced with the .40 version of the assemblies and in a scenario in which the grid is added as a RadMenuHostItem to the Items collection of a drop-down button.

Workaround:  set the BindingContext of the grid to equal that of the form: 
public Form1()
{
            InitializeComponent();

            radGridView1.BindingContext = this.BindingContext;
}
0 comments