Allow binding of complex objects to RadDataGrid.
The grid is not shown after navigating away and returning back on UWP. Available in the 2018 R2 SP release.
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.
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.
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
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 R1 2018 SP release.
Available in the R1 2018 SP release.
My mobile app requires that my data grid have frozen columns on the left that do NOT scroll horizontally. This is useful when the first column might be an ID column or a Date column that the user always needs to see when scrolling through the other data columns.