Completed
Last Updated: 01 Jun 2017 10:51 by ADMIN
When an Extended selection is performed by the user, the items programmatically added to the  SelectedItems collection need to be taken in consideration. Currently, they are not  A scenario with a source collection of 10 items  and the item at index 4 being added to the SelectedItems of the control can serve as an example. If the user presses Shift+Down, the expected result would be the items at index 4 and 5 to be selected. Instead, all items until the item at index 5 are selected. The same behavior can be reproduced with Shift+Click as well.


Available in LIB version: 2017.2.605
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.
Completed
Last Updated: 27 Feb 2017 08:28 by ADMIN
Completed
Last Updated: 11 Aug 2017 12:48 by ADMIN
A workaround it so use a GridViewDataColumn and define a CheckBox within its CellTemplate.

Fix available in LIB version 2017.2.814.
Declined
Last Updated: 13 Mar 2017 15:13 by ADMIN
Created by: Nathan
Comments: 3
Category: GridView
Type: Feature Request
1
Can you add a grid-level option to hide any grouped columns automatically (rather than at the column level)?

I've tried creating a attached property behavior to do this (see attached), but it doesn't work well with auto-generated columns.
Completed
Last Updated: 13 Sep 2019 14:10 by ADMIN

The fix for this issue is available with LIB (version 2018.3.1126) published on Monday, November 26.
			
Completed
Last Updated: 12 Dec 2017 13:52 by ADMIN
Completed
Last Updated: 18 May 2017 13:10 by ADMIN

Available in LIB version: 2017.2.522
Unplanned
Last Updated: 20 Apr 2017 09:41 by ADMIN
Unplanned
Last Updated: 20 Apr 2017 13:21 by ADMIN
Unplanned
Last Updated: 09 Jun 2017 15:02 by ADMIN
As a temporary workaround, the following custom keyboard command provider can be used:

	public class CustomKeyboardCommandProvider : DefaultKeyboardCommandProvider
	{
		private GridViewDataControl parentGrid;

		public CustomKeyboardCommandProvider(GridViewDataControl grid)
		 : base(grid)
		{
			this.parentGrid = grid;
		}

		public override IEnumerable<ICommand> ProvideCommandsForKey(Key key)
		{
			List<ICommand> commandsToExecute = base.ProvideCommandsForKey(key).ToList();

			if (key == Key.Enter)
			{
				commandsToExecute.Clear();
				commandsToExecute.Add(RadGridViewCommands.CommitEdit);
				commandsToExecute.Add(RadGridViewCommands.BeginEdit);
				commandsToExecute.Add(RadGridViewCommands.MoveDown);
			}

			return commandsToExecute;
		}
	}
Completed
Last Updated: 20 Mar 2018 16:27 by ADMIN
Available in LIB version: 2017.2.710
Declined
Last Updated: 24 Oct 2017 13:37 by ADMIN
In an application, I bind a DataTable with many rows to a RadGridView. As soon as, the datatable is binded, I see the memory needed by the application growing. The problem is that the binding is done each time the content of the DataTable is changing. It seems that the memory is never cleared and keep growing until a MemoryException is thrown. This does not appear with a WPF standard GridView. Do you know why ?
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

			
Declined
Last Updated: 18 Sep 2017 12:25 by ADMIN
Created by: jen
Comments: 2
Category: GridView
Type: Feature Request
1
Add a TextAlignment property to the GridView's AggregateFunctions to set the alignment of the resulting text. 
Apply to both Caption and FormattedValue simultaneously. 
This way we won't have to make custom ItemTemplates for the AggregateResultsList in each footer, when using AggregateFunctions out-of-the-box.
Won't Fix
Last Updated: 08 Oct 2018 14:54 by ADMIN
For the time being, an appropriate converter should be used for the bindings.