Completed
Last Updated: 12 Dec 2016 14:54 by ADMIN
When a predefined RowTemplate is set with RowStyle property the Adding New Item functionality fails. As a workaround we suggest extracting a Style based on our GridViewRowStyle and targeting the GridViewRow.

Available in LIB version 2016.3.1212, it will be also available in the 2017 R1 release.
Completed
Last Updated: 04 Feb 2022 09:05 by ADMIN
Release LIB 2022.1.207 (7 Feb 2022)

GridView allows you to define an AggregateFunction for each column and display the summary information for all cells in the column when there is grouping enabled. This will produce a group header with an aggregate result for each column that has aggreagate functions defined.

Adding and removing columns from the RadGridView's Columns collection doesn't update the aggregate results displayed in the group header.

To work this around, you can remove the GroupDescriptor from the GridView control and add a new instance of the descriptor, when you add/remove an item.

private void RadButton_Click_1(object sender, RoutedEventArgs e)
{
	var column = new GridViewDataColumn() { DataMemberBinding = new System.Windows.Data.Binding("Number1") };
	column.AggregateFunctions.Add(new SumFunction());
	this.gridView.Columns.Add(column);
	
	var descriptor = (GroupDescriptor)this.gridView.GroupDescriptors[0];
	this.gridView.GroupDescriptors.Remove(descriptor);
	this.gridView.GroupDescriptors.Add(new GroupDescriptor() { Member = descriptor.Member });
}

Completed
Last Updated: 05 Mar 2015 16:39 by ADMIN
Completed
Last Updated: 14 Oct 2019 11:11 by ADMIN
Release LIB 2019.3.1014
After a cell is edited, a tooltip set through a style trigger is not shown.
Declined
Last Updated: 15 Jul 2016 08:38 by ADMIN
Completed
Last Updated: 15 Feb 2017 09:03 by ADMIN
Changing ItemsSource of the GridViewComboBoxColumn runtime leads to empty cells in that column.

Available in LIB version 2017.1.213 , it will be also available in the R1 2017 SP1 Release.
Unplanned
Last Updated: 21 Jan 2022 17:44 by Alexandr
Currently, when you click on a cell in the row, the cell or the row get selected (based on the SelectionUnit). Also, the current cell is changed, which can be indicated by the border added to the clicked cell.

Add a mechanism to disable this functionality. For example, a new property on the cell (ex: CanUserSelect) that prevents selection and currency change on cell click. 
Completed
Last Updated: 25 Sep 2019 15:34 by ADMIN
Release LIB 2019.3.923
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
1

This happens only if there are many columns outside of the viewport (a scrollviewer is shown), with their TabStopMode property set to Skip.

In this case, the navigation needs some time in order to get to the next row and select the first available cell.

A possible workaround for this would be to implement a custom Keyboard Command Provider, and to replace the MoveNext command with a custom one, that moves the current cell, by setting the CurrentCellInfo property of RadGridView.

Completed
Last Updated: 17 May 2019 15:17 by ADMIN
Release LIB 2019.2.520 (05/20/2019)
Completed
Last Updated: 01 Feb 2019 12:11 by ADMIN
Characters are lost when pressing multiple keyboard keys in quick succession.
Unplanned
Last Updated: 21 Nov 2018 10:34 by ADMIN
Allow customizing the FieldFilterControl shown under the column header when the FilteringMode is set to FilterRow. Currently, you can customize this only via an implicit style or by looking into the gridview's visual tree in code. It would be useful if you can define a style per column.
Completed
Last Updated: 18 Nov 2022 06:12 by ADMIN
Release LIB 2022.3.1121 (21 Nov 2022)
When the GridViewComboBoxColumn's DataMemberBinding is bound to a property, which is not a primitive type, selecting an item from the drop-down causes the first item of the ItemsSource to be displayed, rather than the selected one.
Unplanned
Last Updated: 03 Aug 2016 13:07 by Metin
ADMIN
Created by: Nick
Comments: 1
Category: GridView
Type: Feature Request
1

			
Completed
Last Updated: 07 Feb 2022 14:37 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)

When using a QueryableCollectionView with a FilterDescriptor and a GroupDescriptor, items which are filtered won't be added to the (new) group after being edited programmatically.

For the time being, the Refresh method of the view can be called to reevaluate this or the filter descriptor can be removed and re-added.

Completed
Last Updated: 27 Feb 2017 08:28 by ADMIN
Completed
Last Updated: 18 Jul 2016 10:47 by ADMIN
Completed
Last Updated: 29 Jul 2015 15:42 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Bug Report
0

			
Completed
Last Updated: 28 Jan 2016 16:26 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Feature Request
0
This functionality will be available with Q1 2016 SP.
Completed
Last Updated: 01 Apr 2016 14:59 by Yehudah
If I change Column.IsVisibility to FALSE, the column group headers are disappear and not restored.

The problem should be resolved with LIB version 2016.1.404.