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;
		}
	}
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

			
Unplanned
Last Updated: 08 Feb 2017 17:03 by ADMIN
Unplanned
Last Updated: 30 Jan 2017 15:14 by ADMIN
Unplanned
Last Updated: 30 Jan 2017 15:14 by ADMIN
Unplanned
Last Updated: 19 Jan 2017 13:37 by ADMIN
Unplanned
Last Updated: 10 Jan 2017 15:20 by Artem
Unplanned
Last Updated: 04 Jan 2017 07:25 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0

			
Unplanned
Last Updated: 03 Jan 2017 21:13 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 16:26 by ADMIN
Workaround: reused the cell element like this:
CreateCellElement(Telerik.Windows.Controls.GridView.GridViewCell cell, object dataItem)
{
    var button = cell.Content as Button;
    . . .
 
    return button;
}
Unplanned
Last Updated: 03 Jan 2017 15:09 by ADMIN
Unplanned
Last Updated: 02 Dec 2016 11:13 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
0