Assistant.isNotOrdered
Property Description |
Whether steps must be completed in a particular sequence. If steps are ordered, users must complete the current step before proceeding to the next step. The default 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.addStep({
id : 'idname',
label : 'Sample label'
});
assistant.addStep({
id : 'idname2',
label : 'Sample label 2'
});
assistant.isNotOrdered = false;
...
//Add additional code