Assistant.hideAddToShortcutsLink
Property Description |
Whether to show or hide the Add to Shortcuts link that appears in the top-right corner of an assistant page. By default, the value is If set to |
Type |
Boolean |
Supported Script Types |
Suitelets For more information, see SuiteScript 2.x Script Types. |
Module |
|
Since |
2015.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/ui/serverWidget Module Script Samples.
//Add additional code
...
var assistant = serverWidget.createAssistant({
title : 'Simple Assistant'
});
assistant.hideAddToShortcutsLink = true;
...
//Add additional code