Installed the latest xceed grid and noticed code that enumerated Items bound to the grid that worked previously no longer runs.correctly anymore.
Examples are:
DataGridCollectionView view = (DataGridCollectionView)issueGrid.ItemsSource;
foreach (IssueQuery issue in view)
And
foreach (IssueQuery issue in issueGrid.ItemsSource)
This code no longer returns any IssueQuery objects unless I change the Foreach type to Object.
Is this ByDesign or a bug?