A TargetName = "FilterIcon" should be added to the foreground setter in the trigger in the control template of the FilteringDropDown.
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
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.
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();
}));
If you set BorderThickness through a custom CellStyle, the left border is overwritten by our code.
Using such negative margin leads to some parts of the template to be actually outside of the control boundaries.
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>