AssistantStep.getSublistValue(options)
Method Description |
Gets the current value of a sublist field (line item) in a step. |
Returns |
string |
Supported Script Types |
Suitelets For more information, see SuiteScript 2.x Script Types. |
Governance |
None |
Module |
|
Since |
2015.2 |
Parameters
The options parameter is a JavaScript object.
Parameter |
Type |
Required / Optional |
Description |
Since |
---|---|---|---|---|
|
string |
required |
The internal ID of the sublist. |
2015.2 |
|
string |
required |
The internal ID of the sublist field. |
2015.2 |
|
number |
required |
The line number for the sublist field.
Note:
The first line number on a sublist is 0 (not 1). |
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'
});
var assistantStep = assistant.addStep({
id : 'idname',
label : 'Sample label'
});
var sublist = assistant.addSublist({
id : 'sublistid',
type : serverWidget.SublistType.INLINEEDITOR,
label : 'Editor'
});
var sublistfield = sublist.addField({
id : 'fieldid',
type : serverWidget.FieldType.TEXT,
label : 'Text'
});
var sublistvalue = assistantStep.getSublistValue({
group: 'sublistid',
id: 'fieldid',
line: 0
});
...
//Add additional code