Won't Fix
Last Updated: 04 Apr 2022 12:38 by ADMIN

Hi,

I am currently having issues with RadGridView's group footer: I am trying to add a button to the footer template which is supposed to trigger a command which in turn needs some info on the group it was triggered from*.

Since (unlike the header) there does not seem to be any info on the group available directly within the GroupFooterTemplate, I am pulling the group info from the parent GridViewGroupFooterRow:

                <telerik:GridViewDataColumn [...]>
                    <telerik:GridViewColumn.GroupFooterTemplate>
                        <DataTemplate>
                            <Button Command="{Binding DataContext.ShowFooterGroupCommand, RelativeSource={RelativeSource AncestorType=telerik:RadGridView}}"
                                    CommandParameter="{Binding Group.Key, RelativeSource={RelativeSource AncestorType=telerik:GridViewGroupFooterRow}}" />
                        </DataTemplate>
                    </telerik:GridViewColumn.GroupFooterTemplate>
                </telerik:GridViewDataColumn>

This is working great as long as the RadGridView does not use Row virtualization. However, when I turn on Row virtualization and scroll around for a bit, the value I get passed as the CommandParameter is more or less random and has nothing to do with the group my button is actually located in.

I attached a small example project (.Net 6 but our app uses 4.8 so I set that as the Framework below) for you to try it yourself. Just scroll around and click the buttons while watching the debug output window. You will see that the groups in the output window will not match the group where you actually clicked the button after some scrolling.

Expected Behavior

Even when virtualizing, the Group key returned when binding to GridViewGroupFooterRow.Group(.Key) should reliably return the key of the actual group my button is placed in. It would be even better if it was somehow possible to get the group directly, without having to resort to FindAncestor.

Regards
Simon Müller
Hofmann Fördertechnik GmbH

 

* Basically I am trying to give the user a possibility to add new items to the individual groups and I don't want to add the button to the group header since that makes it too easy to accidentally hit the header's RadToggleButton, collapsing the group.

Completed
Last Updated: 26 May 2022 06:15 by ADMIN
Release LIB 2022.2.530 (30 May 2022)

Hi

I have a grid where some rows contain child rows.  In order to control which rows have the "+" expander icon I use the IsExpandableBinding property.  I also have a toolbar which contains a convenience button to collapse all the expanded rows.

This button is bound to a handler which called RasGridView.CollapseAllHierarchyItems(), but this does not have any effect.  I've tried removing the IsExpandableBinding property, and the collapse mechanism then works (but I get unwanted expanders on every row).

 

Completed
Last Updated: 18 Feb 2021 15:23 by ADMIN
Release R1 2021 SP
Replacing all Columns, Group, and Sort descriptors while keeping the same ItemsSource causes the grid rows to have the wrong heights.
Completed
Last Updated: 05 Feb 2018 16:37 by ADMIN
The designer crashes with this exception:
InvalidOperationException: 'GridViewColumnGroupRow' TargetType does not match type of element 'GridViewColumnGroupRow'.

See the attached screenshot. It's from a new project, after clean and rebuild.

Visual studio: 2015
Telerik UI for wpf: 2015.2
Implicit styles, Windows8 theme.

* The problem is not theme specific. As a workaround, use no xaml binaries instead of xaml files.
Completed
Last Updated: 02 Apr 2021 05:13 by ADMIN
Release LIB 2021.1.405 (5/04/2021)
Currently, when setting ShowToolTipOnTrimmedText, the duration of the displayed tooltip is hardcoded to 5 seconds. Add an API to change the duration.
Completed
Last Updated: 09 Oct 2015 10:29 by ADMIN
GridViewHeaderCell are not draggable when RadGridView is hosted in DropDownButton.DropDownContent. Trying to drag a cell does not trigger drag events.

The problem should be resolved with lib version 2015.3.1012.
Completed
Last Updated: 21 Mar 2022 14:38 by ADMIN
Release LIB 2022.1.328 (28 March 2022)
The content of the GroupHeaderRow shows the value of the DataMemberBinding instead of the value of the DisplayMemberPath.
Declined
Last Updated: 31 Mar 2022 11:13 by ADMIN
Created by: LindenauAtSOG
Comments: 7
Category: GridView
Type: Bug Report
0

 

When selecting a Cell using the Mouse, the BorderColor is different to when navigating via ArrowKeys.

Also it seems that the Property IsSynchronizedWithCurrentItem does not work correctly when using ArrowKeys.

The issue with the Color can be observed in the Demo

Unplanned
Last Updated: 03 Aug 2016 13:13 by ADMIN
I would like to be bale to modify at once several cells of a GridViewComboBoxColumn, when using the common ItemsSourceBinding for all rows (in my GridView, the selection ​is: SelectionMode="Multiple" SelectionUnit="FullRow").
So I would like for the selected rows to apply the same value as the edited cell.
Completed
Last Updated: 15 Feb 2022 07:43 by ADMIN
Release R1 2022 SP1
The Search As You Type feature of the RadGridView control, with the VisualStudio2019 theme and the Dark color variation applied, causes the highlighted text to be hard to read.
Completed
Last Updated: 25 Apr 2016 08:09 by ADMIN
With R2 2016 GridViewComboBoxColumn will expose a property IsLightweightModeEnabled. Setting the property to True should resolve the problem.
Completed
Last Updated: 31 May 2021 11:37 by ADMIN
Release R2 2021 SP1

Hi,

as you can see in the screenshot below the new dark Material Theme has the bug, that the selected row is white if it's not focused.

I can not find in the code where this white color comes from.

I encountered it only in the GridView and TreeListView yet.

Also I can say, that it wasn't like that before the new update. I made my own dark material theme and it didn't appear like this before.

 

Greetings Benedikt

 

Completed
Last Updated: 26 Nov 2015 15:19 by ADMIN
The problem should be resolved with lib version 2015.3.1130.
Unplanned
Last Updated: 03 Aug 2016 13:10 by ADMIN
GridViewDataColumn doesn't respect FallbackValue when the source property returns DependencyProperty.UnsetValue
Completed
Last Updated: 13 May 2016 10:46 by ADMIN
Completed
Last Updated: 28 Jan 2022 09:28 by ADMIN
Release LIB 2022.1.131 (31 Jan 2022)
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
0

Calling the BeginInsert() method of RadGridView, adds a new row at the bottom of the items and scrolls to the newly added row. However, if the vertical scrollbar is not visible and the newly added row makes the viewport so big that the scrollbar should display, the row gets clipped. Also, the vertical scrollbar that was just added is not scrolled to the bottom, which is actually why the row is clipped. Each next insert (after the scrollbar gets visible) will display the added row properly.

To work this around, you can scroll the vertical scrollbar manually to bottom. 

private void BeginInsertRow()
{
	var scrollViewer = this.gridView.FindChildByType<GridViewScrollViewer>();
	bool requestScrollToBottom = false;
	if (scrollViewer.ComputedVerticalScrollBarVisibility == Visibility.Collapsed)
	{
		var panel = this.gridView.FindChildByType<GridViewVirtualizingPanel>();
		var sumHeight = (source.Count + 1) * this.gridView.RowHeight;                
		requestScrollToBottom = sumHeight > panel.ActualHeight;                
	}
	this.gridView.BeginInsert();

	if (requestScrollToBottom)
	{
		scrollViewer.ScrollToBottom();
	}            
}

Completed
Last Updated: 13 May 2016 13:43 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
0
The issue is reproduced only with GroupRenderMode="Flat".
Declined
Last Updated: 20 Oct 2015 11:24 by ADMIN
ADMIN
Created by: Maya
Comments: 1
Category: GridView
Type: Bug Report
0

			
Unplanned
Last Updated: 17 Mar 2017 14:37 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: GridView
Type: Bug Report
0

			
Completed
Last Updated: 16 Aug 2018 10:59 by ADMIN