Unplanned
Last Updated: 03 Aug 2016 13:09 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: GridView
Type: Bug Report
0

			
Unplanned
Last Updated: 30 Jan 2017 15:14 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:16 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:10 by ADMIN
The workaround could be using QueryableCollectionView instead. Still, it does not suggest the exact same functionality as ICollectionView.
Unplanned
Last Updated: 28 Jun 2023 08:14 by alitvinov
Suppose GridView has 4 columns A, B, C (invisible), D.
Copy all cells below the visible columns A B and D.
Pasting the values results in incorrectly pasted empty rows and empty column header around the copied cells values.
Unplanned
Last Updated: 30 Jan 2017 15:14 by ADMIN
Unplanned
Last Updated: 03 Jan 2023 11:38 by ADMIN

Setting ShowDistinctFilters for a RadGridViewColumn hides the distinct values from the filter popup as expected.

But the grid still queries the ItemsSource for distinct values of said column when showing thje popup - it calls something like

MyQueryable.Select(item => item.SomeColumn).Distinct().OrderBy(item => item).Take(1000))
It looks like a (small) performance hit, especially when custom IQueryable implementation makes calls to external services to query the data.  Which is my case.
Unplanned
Last Updated: 02 Jun 2022 14:52 by Stenly
An empty row appears when using grouping and the EnableStickyGroupHeaders="True", and the height of the row is changed dynamically.
Unplanned
Last Updated: 03 Aug 2016 13:12 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:12 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:12 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:12 by Dev
When tabbing in grouped RadGridView placed in Grid with another visual element inside it, GroupRenderMode is set to Flat  and second group is not in ViewPort, selected row changed its state to Unfocused.
Unplanned
Last Updated: 04 Sep 2018 12:49 by ADMIN
Setting the theme via the StyleManager.SetTheme(control, theme) method does not style the cell as expected when a CellStyle is defined for its parent column.

The current workaround is to explicitly set the theme via the style:
<Style x:Key="BlueCellStyle" TargetType="telerik:GridViewCell">
		<Setter Property="Background" Value="PowderBlue"/>
                <Setter Property="telerik:StyleManager.Theme" Value="VisualStudio2013" />
</Style>
Unplanned
Last Updated: 26 Apr 2018 13:39 by ADMIN
To work this around set the GroupRenderMode property of RadGridView to Flat.

When GroupRenderMode is set to Nested the issue can be overcome by calling the BringIntoView method on the row returned in the ScrollIntoViewAsync method's callback:
gridView.ScrollIndexIntoViewAsync(index,
  new Action<FrameworkElement>((f) =>
  {
      f.BringIntoView();
  }));
Unplanned
Last Updated: 24 Apr 2018 12:27 by Vladimir