Completed
Last Updated: 20 Jan 2016 14:23 by ADMIN
The problem should be resolved with lib version 2016.1.125.
Completed
Last Updated: 21 Jun 2016 06:24 by ADMIN
When a SortDesciptor is applied and items are modified, the selection behaves inconsistently:

1. If an item is modified, so it's position needs to be changed according to the sorting descriptor, it will be removed from the SelectedItems.
2. If an item is modified, but it's position should remain the same, it remains in the SelectedItems collection.
2a. If IsSynchronizedWithCurrentItem item is set to true and the position should remain the same, the item is removed from the SelectedItems and the one that goes in the same position is added to the collection.

Workaround is to add the item back to the SelectedItems collection when RowEdit ends.

private void clubsGrid_RowEditEnded(object sender, GridViewRowEditEndedEventArgs e)
{
    (e.Source as RadGridView).SelectedItems.Add(e.NewData as Club);
}
Won't Fix
Last Updated: 23 Feb 2018 08:00 by ADMIN
Completed
Last Updated: 18 Jun 2019 13:54 by ADMIN

When loading the columns from a file the columns are read in the order they are found in the Columns collection of RadGridView upon saving them.
Setting the DisplayIndex triggers the internal grid logic that ensures the DisplayIndex of each column is correct. 
The combination of the above two operations can cause the grid to invalidate the DisplayIndex of columns while deserializing them and thus setting invalid values.
To ensure correct behaviour when deserializing sort the columns by their display order property before returning them in ProvideValue()
Declined
Last Updated: 04 Oct 2016 07:31 by ADMIN
Completed
Last Updated: 08 Jan 2016 11:39 by ADMIN
Completed
Last Updated: 13 Jul 2016 12:07 by ADMIN
To work around the issue, set the EnableColumnGroupsVirtualization property of RadGridView to True.
Completed
Last Updated: 11 Dec 2015 08:14 by ADMIN
Completed
Last Updated: 17 Feb 2016 12:50 by ADMIN
Completed
Last Updated: 29 Oct 2021 11:42 by ADMIN
Release LIB 2021.3.1101 (1 Nov 2021)
Completed
Last Updated: 01 Jul 2016 11:46 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Bug Report
7

			
Completed
Last Updated: 25 Apr 2016 08:09 by ADMIN
With R2 2016 GridViewComboBoxColumn will expose a property IsLightweightModeEnabled. Setting the property to True should resolve the problem.
Unplanned
Last Updated: 03 Aug 2016 13:10 by ADMIN
Completed
Last Updated: 26 Nov 2015 15:19 by ADMIN
The problem should be resolved with lib version 2015.3.1130.
Unplanned
Last Updated: 03 Aug 2016 13:10 by ADMIN
GridViewDataColumn doesn't respect FallbackValue when the source property returns DependencyProperty.UnsetValue
Completed
Last Updated: 17 Nov 2015 11:38 by ADMIN
Completed
Last Updated: 23 Mar 2016 16:38 by Tino
The new properties will be available with Q2 2016. 
Completed
Last Updated: 13 May 2016 13:43 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
0
The issue is reproduced only with GroupRenderMode="Flat".