Unplanned
Last Updated: 14 Jun 2017 06:50 by Lukas
workaround is to override the OnInitialized of the custom column:

 protected override void OnInitialized(EventArgs e)
        {/* //if XAML assemblies

            Theme theme = StyleManager.GetTheme(this);
            Type themeType = null;
            if (theme != null)
            {
                themeType = theme.GetType();
            }
            this.DefaultStyleKey = new ThemeResourceKey() { ElementType = typeof(Telerik.Windows.Controls.GridViewColumn), ThemeType = themeType };*/
        }
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: 05 Jun 2017 12:01 by ADMIN
DataFormatString is not respected when exporting RadGridView to .xlsx file and a GridViewDataColumn is bound to a nested property.

Available in LIB version: 2017.2.605
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: 29 May 2017 05:55 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: GridView
Type: Bug Report
0

Available in LIB version: 2017.2.529
Completed
Last Updated: 22 May 2017 14:23 by ADMIN
When pasting data to create new rows(which are created in the AddingNewDataItem event), the pasting logic on the existing cells stops working.


Available in LIB version: 2017.2.529
Completed
Last Updated: 18 May 2017 13:10 by ADMIN

Available in LIB version: 2017.2.522
Completed
Last Updated: 15 May 2017 06:49 by ADMIN
Completed
Last Updated: 12 May 2017 14:33 by ADMIN
Completed
Last Updated: 03 May 2017 08:37 by ADMIN
The issue is replicated only when a filtering operation is applied. For a grouping and sorting one it is not. This behavior is replicated in WPF only.
Unplanned
Last Updated: 20 Apr 2017 13:21 by ADMIN
Unplanned
Last Updated: 20 Apr 2017 09:41 by ADMIN
Unplanned
Last Updated: 19 Apr 2017 11:28 by ADMIN
Unplanned
Last Updated: 07 Apr 2017 16:32 by ADMIN
Unplanned
Last Updated: 04 Apr 2017 07:46 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
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: 13 Mar 2017 15:20 by ADMIN
Completed
Last Updated: 13 Mar 2017 15:19 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Bug Report
0
UPDATE: The issue is reproduced with columns bound to other data types as well.
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.