Completed
Last Updated: 04 Jan 2022 16:55 by ADMIN
Release R1 2022
Christopher
Created on: 31 Dec 2021 08:41
Category: Spreadsheet
Type: Bug Report
0
RadSpreadsheet: Capital letters do not trigger cell edit
If I type a lowercase letter, the cell accepts the text and is placed in edit mode. If I type an upper case letter (holding Shift), nothing happens (no edit mode, no text displays in the cell). 
Attached Files:
1 comment
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 31 Dec 2021 09:23

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.