The DataGrid documentation is missing a Styling article. It should cover how to use the following: - DataGridBorderStyle (and how it's used for the RowBackground styles and SelectedStyle - DataGridTextCellStyle (especially how as the CellContentStyle it lets you set the SelectedTextColor) - DataGridLoadOnDemandStyle - DataGridColumnHeaderStyle - DataGridGroupHeaderStyle - DataGridHeaderStyle I think the Styling section might need it's own node with a few articles as the information would be too large for one article
Similar to Search as you type for UI for WPF: https://docs.telerik.com/devtools/wpf/controls/radgridview/features/search-as-you-type
Available in minor release 2018.2.727.250. It will also be available in the R3 2018 release.
When DataGrid is placed inside a TabbedPage and items are adding to its ItemsSource from a different tab, switching the tabs causes the exception. Available in minor release 2018.2.727.250. It will also be available in the R3 2018 release.
In grouped RadDataGrid, whenever the underlying data item raises a propertychanged notification for the property the grid is using to group the items by, an exception is raised. Available in minor release 2018.2.727.250. It will also be available in the R3 2018 release.
When adding a filter to the DataGrid programmatically, the filter descriptor values are not shown in the filter UI and the header icons are not visible.
When using a TemplateCell, selection does not fire on Android. Reproducible (use SelectionChanged and SelectionUnit="Row"): <telerikGrid:RadDataGrid.Columns> <telerikGrid:DataGridTemplateColumn HeaderText="Key"> <telerikGrid:DataGridTemplateColumn.CellContentTemplate> <DataTemplate> <Grid Padding="0,5"> <Label Text="{Binding Key}" VerticalOptions="Center" TextColor="Black" /> </Grid> </DataTemplate> </telerikGrid:DataGridTemplateColumn.CellContentTemplate> </telerikGrid:DataGridTemplateColumn> </telerikGrid:RadDataGrid.Columns> WORKAROUND Set the DataTemplate content's InputTransparent="True" so that input event is passed through the template to the DataGrid: <DataTemplate> <Grid InputTransparent="True"> ... </Grid> </DataTemplate>
When a DataGrid is inside a BusyIndicator's Content, and the BusyIndicator IsBusy is toggled from True to False, the DataGrid disappears. It will render when UI is forced to measure again (e.g. Windows resize or device rotation). Available in the R2 2018 release.
The grid is not shown after navigating away and returning back on UWP. Available in the 2018 R2 SP release.
When defining TextColumns with a CellStyleSelector, it works correctly the first time the DataGrid is bound to the ItemsSource. If you then update the bound collection (which has PropChanged wired up), the CellStyleSelector's SelectStyle method is properly executed, but the DatasGrid doesn't use the returned DataGridBorderStyle. iOS - Works as expected UWP - Background color doesn't update Android - Background color doesn't update Find reproducible attached Available in the R2 2018 release.
Available in the R2 2018 release.
Filtering UI can be customized through the FilterControlTemplate property of the DataGridColumn: DataGrid: FilterControl Template.
We should provide a way to customize the Grouping UI including the Visible Columns area.