Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#11305 closed New Feature (invalid)

CKFinder new keybinding suggestion: F2 for renaming

Reported by: Joel Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: CKFinder Cc:

Description

I rename things relatively often in various programs and very often F2 is a hotkey for that functionality. It would be awesome if CKFinder would also follow this. This would be relatively simple to implement as well with something like the following ketCode check:

var yourEventHandler = function(event){
    var key_f2 = 113;
    if(event && event.keyCode === key_f2) {
        // fire rename for selected item
    }
}

Change History (4)

comment:1 Changed 10 years ago by Wiktor Walc

Status: newconfirmed

Thanks, reported on our internal tracker for CKFinder.

comment:2 Changed 10 years ago by Wiktor Walc

Actually, could you clarify whether you have checked the F2 shortcut in a file which you can rename? Can you try the following:

Let me know what OS / browser did you use in case it did not work.

comment:3 Changed 10 years ago by Joel

Resolution: invalid
Status: confirmedclosed

Well hot damn, I tried it in a non-public folder as well, no wonder it didn't work. Invalid ticket!

comment:4 Changed 10 years ago by Wiktor Walc

Great, thanks for the confirmation! Actually we could display a gentle error message instead, should be a bit more intuitive I guess.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy