Completed
Last Updated: 18 Jun 2018 08:20 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 1
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 18 Jun 2018 05:51 by ADMIN
The expanded state of the hierarchical item is not preserved when searching thought search panel for something that is not found and clearing search text.
Completed
Last Updated: 18 Jun 2018 05:31 by ADMIN
Completed
Last Updated: 15 Jun 2018 15:51 by ADMIN
When you define a style targeted at GridViewCell with a color without transparency, horizontal grid lines are hidden.
Declined
Last Updated: 12 Jun 2018 12:06 by Pawel
Created by: Pawel
Comments: 2
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 04 Jun 2018 11:54 by ADMIN
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: 04 Jun 2018 11:53 by ADMIN
Completed
Last Updated: 01 Jun 2018 14:37 by ADMIN
Completed
Last Updated: 01 Jun 2018 14:37 by ADMIN
Full error message: No generic method 'Sum' on type 'System.Linq.Enumerable' is compatible with the supplied type arguments and arguments. No type arguments should be provided if the method is non-generic."

Showing in design time, working at run time. 
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.
Completed
Last Updated: 11 May 2018 05:43 by ADMIN
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: 26 Apr 2018 11:32 by Jan
Unplanned
Last Updated: 24 Apr 2018 12:27 by Vladimir
Completed
Last Updated: 20 Apr 2018 09:12 by Jan
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

			
Completed
Last Updated: 29 Mar 2018 08:41 by ADMIN
An implicit style could be added:

<Style TargetType="telerik:FilteringControl" BasedOn="{StaticResource FilteringControlStyle}">
   <Setter Property="Background" Value="{telerik:FluentResource ResourceKey=AlternativeBrush}" />
</Style>
Declined
Last Updated: 28 Mar 2018 11:53 by ADMIN
I am setting the status of the item to Declined as the reported behavior is due to the fact that the RowDetailsVisibilityMode is set to VisibleWhenSelected. The default behavior of RadGridView is to split the merged cell when a row with expanded row details is added. Thus, the reported issue you are is the expected one. If setting the RowDetailsVisibilityMode is removed the control will behave as expected.