Shortcuts
Copy
Add an item form keyboard shortcut
“I want a shortcut to allow users to create a new item from an item form.”
- Navigate to Administration > Configuration > Client Presentation in the TOC.
- Click the Search button to run the Client Presentation search.
- Click the Global item property in the single search result.
- In the Command Bar Section grid, open the com.aras.innovator.cui_default.itemWindowShortcuts item.
- Click the Edit button.
Click the New button in the Command Bar Item grid, then select Shortcut > OK in the dialog to create a new keyboard shortcut with the following properties:
- Name: New_Item
- Sort Order: 1024
- Action: Add
- For Identity: World
- Right click the new button row and select Open.
- Set the Shortcut property to alt+ctrl+n.
- Set the Handler property to a custom Method containing the following code:
var
itemtype =
window
.itemTypeName;
if
(itemtype) {
aras.uiNewItemEx(itemtype);
}
- Click Save and close the new Shortcut tab.
- Save and close the Command Bar Section tab.
- Open an item, like a Part, and enter the keyboard shortcut CTRL+ALT+N. A new Part item will open in a new tab.