Completed
Last Updated: 06 Nov 2020 13:09 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
Guido
Created on: 24 Sep 2020 09:57
Category: UI for WPF
Type: Bug Report
1
GridView: Modifiers (Ctrl | Alt | Shift) + F2 triggers edit mode
The GridView intercepts the F2 key for cell editing (this is very good), but does not take into account the modifiers and also intercepts (Ctrl | Alt | Shift) + F2 and other commands stop working
3 comments
ADMIN
Dinko | Tech Support Engineer
Posted on: 28 Oct 2020 09:18

Hello Guido,

Thank you for the additional information. You are right that this behavior is unexpected. You can subscribe to the item so that you can get notified of its status changed. I have increased its internal priority so that our development team could consider it for planning.

Regards,
Dinko
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Guido
Posted on: 27 Oct 2020 15:32
Dear Dinko,

probably all you need to do is to change:
    if (e.Key==Key.F2) { EditCell(); e.Handled=true }
to
    if (e.Key==Key.F2 && Keyboard.Modifiers==ModifierKeys.None) { EditCell(); e.Handled=true }

I need a framework to speed up my work, not a framework that I need to find a workaround.


Guido
ADMIN
Dinko | Tech Support Engineer
Posted on: 01 Oct 2020 07:19

Hello Guido,

You can consider implementing a custom Keyboard Command Provider. This way, you can check the current press key combination and return the commands you want to execute. Give this article a try and let me know if it works for you.

Regards,
Dinko
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products, quickly just got a fresh new look + new and improved content, including a brand new Blazor course! Check it out at https://learn.telerik.com/.