The vertical scrollbar of RadGridView disappears in some cases when the last parent item is expanded and then collapsed. The issue reproduces only with the Flat GroupRenderMode and when UseLayoutRounding property is set to True.
The workaround is to avoid setting the UseLayoutRounding property to True.
This issue manifests when RadGridView loaded some columns first (which are working) and then add more columns. The additional columns cannot paste values in their cells.
To work this around, mark the new columns as auto generated and call one of the internal methods.
newColumn.IsAutoGenerated = true;
this.gridView.Columns.Add(newColumn);
var collectionViewPropInfo = this.gridView.Items.GetType().GetProperty("CollectionView", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
var qcv = (QueryableCollectionView)collectionViewPropInfo.GetValue(this.gridView.Items);
var methodInfo = qcv.GetType().GetMethod("OnElementTypeChanged", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
methodInfo.Invoke(qcv, new object[0]);
InvalidOperationException in FilteringViewModel.ClearFilters()
1. Scroll to near the bottom of grid. 2. Refresh the Grid, populating it with less items. 3. Should see mostly blank grid besides for bottom row. 4. If you scroll any the rows show back up.
When DragElementAction="ExtendedSelect" in GridView is set, there is a problem with the deselecting behaviour. Ctrl + click no longer deselects the row. The problem should be resolved with lib version 2015.3.1019.
GridView ColumnGroup Header does not refresh when bound to view model
IsReorderable of a column is not respected when ReorderColumnsMode is different than the default one Fixed with LIB version 2014.1.317.
Change AlternateRowBackground (runtime) has only effects after scrolling in grid or after rebinding it.
When KeyboardNavigation.TabNavigation is set to Once, RadGridView does not lose the focus after the second time it's focused.
GridViewColumn's IsVisible Binding breaks when you create an instance of a usercontrol.
HeaderCheckBoxStyle of GridViewSelectColumn returns TextBlock as Header in Office2013 theme
Currently, when a user selects multiple rows, but skips a few, and then copies, the data in the Clipboard will look as if the selected rows were in an uninterrupted sequence. Unselected columns, on the other hand, leave a "hole" in the clipboard data. This
Add Option to disable autoBring into View the focused RadGridView unit.
Available in LIB version 2017.1.213 , it will be also available in the R1 2017 SP1 Release.