Hello, Christopher,
Currently, the possible solution that I can suggest is to enter edit mode when the Shift key is processed:
this.radSpreadsheet1.SpreadsheetElement.InputHandler = new CustomSpreadsheetInputBehavior(this.radSpreadsheet1.SpreadsheetElement);
public class CustomSpreadsheetInputBehavior : SpreadsheetInputBehavior
{
public CustomSpreadsheetInputBehavior(RadSpreadsheetElement spreadsheet) : base(spreadsheet)
{
}
public override void ProcessKeyDown(KeyEventArgs e)
{
if (e.Shift)
{
this.Spreadsheet.ActiveWorksheetEditor.Commands.EnterActiveCellEditMode.Execute(e.KeyCode);
}
else
{
base.ProcessKeyDown(e);
}
}
}
I hope this information helps.
Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.