Completed
Last Updated: 02 Feb 2018 11:24 by ADMIN
A TargetName = "FilterIcon" should be added to the foreground setter in the trigger in the control template of the FilteringDropDown.
Completed
Last Updated: 25 May 2023 13:35 by ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Bug Report
0
Hello

Good job with the Fluent theme! I'm using the core styles with validation in my GridViews and have noticed that the bottom border is not/barely visible in invalid grid cells (see attached screenshot).

I can fix this by taking a copy of GridViewCellCoreValidationTemplate and adding Margin="0 0 0 1" to Background_Invalid.

Cheers
Jack
Completed
Last Updated: 15 Aug 2018 09:52 by ADMIN
Unplanned
Last Updated: 27 Feb 2018 16:37 by ADMIN
Completed
Last Updated: 26 Jun 2018 11:04 by ADMIN
Completed
Last Updated: 20 Apr 2018 09:12 by Jan
Unplanned
Last Updated: 13 Mar 2018 12:12 by ADMIN
Completed
Last Updated: 26 Apr 2018 11:32 by Jan
Completed
Last Updated: 11 May 2018 05:43 by ADMIN
Completed
Last Updated: 11 May 2018 05:44 by ADMIN
Placing text in quotes after exclude search operator and search getting the wrong result. As a workaround to get the desired result the search string can be changed in this way: from  -"Rio de" to  -Rio + -de.
Unplanned
Last Updated: 19 Apr 2018 11:19 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: GridView
Type: Bug Report
0

			
Unplanned
Last Updated: 24 Apr 2018 12:27 by Vladimir
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();
  }));
Completed
Last Updated: 04 Jun 2018 11:54 by ADMIN
If you set BorderThickness through a custom CellStyle, the left border is overwritten by our code. 
Completed
Last Updated: 02 Jul 2018 06:48 by ADMIN
Completed
Last Updated: 26 Nov 2018 16:48 by ADMIN
ADMIN
Created by: Sia
Comments: 0
Category: GridView
Type: Bug Report
0
Using such negative margin leads to some parts of the template to be actually outside of the control boundaries.

The fix for this issue will be available with the next LIB (version 2018.3.1203) expected on Monday, December 3.
Completed
Last Updated: 15 Oct 2018 14:19 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 1
Category: GridView
Type: Bug Report
0

			
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>