ATG Commerce Service Center allows you to modify the keyboardshortcuts that are used throughout the application and Service Center.

To modify the shortcuts, you must modify the following files:

The keyboardShortcuts files are used to map keyboard shortcuts to published topics. The keyboardTopics files are used to execute these topics and perform the specific functions.

The following is an example of a keyboard shortcut definition for the shortcut key ALT+6:

atg.keyboard.registerShortcut(
 "ALT+6", {
  shortcut: "ALT + 6",
  name: getResource("keyboard.service.customersTab.name"),
  description: getResource("keyboard.service.customersTab.description"),
  area: getResource("keyboard.area.workspace"),
  topic: "CustomersTab",
  notify: true
 });

Where:

 
loading table of contents...