I'm in a company that is upgrading from Crm2011 to Dynamics 365. Our current solution rely heavily on using shortcuts, which is a very important requirement from our users.
We are experiencing problems with adding shortcuts in Dynamics 365 using the Mousetrap-api (https://craig.is/killing/mice) and have tried other api's as well without succes
The shortcuts are added onformload like this, and we are seing the messages "Adding shortcuts" and "Adding shortcuts - done" in the console, but none of the shortcut seems to work
function OnCrmFormLoad(ctx) {
console.log("Adding shortcuts");
Mousetrap.Add('5', function() {console.log('5'); });
Mousetrap.Add('ctrl k', function() {console.log('ctrl k'); });
console.log("Adding shortcuts - done");
}
Are custom keyboard shortcuts not supported in Dynamic 365? or is there another way to add custom keyboard shortcuts?