Modules

filter

 

Objects/Functions

module (N/ui/serverWidget)

SuiteScript 2.0

FieldGroup.isCollapsed

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=FieldGroup.isCollapsed for more information.

N/ui/serverWidget Module
FieldGroup.isCollapsed
Property Description: Indicates whether field group is collapsed or expanded. The default value is false, which means that when the page loads, the field group will not appear collapsed. If set to true, the field group is collapsed. Only supported for fields on serverWidget.Assistant objects
Type: boolean
Supported Script Types: SuiteScript 2.0 Suitelet Script Type and SuiteScript 2.0 User Event Script Type (beforeLoad(scriptContext))
Module: N/ui/serverWidget Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=FieldGroup.isCollapsed

Example:

// Code Example 1
//Add additional code
//...
var form = serverWidget.createForm({
title : 'Simple Form'
});
var fieldgroup = form.addFieldGroup({
id : 'fieldgroupid',
label : 'Field Group'
});
var field = form.addField({
id : 'custpage_textfield',
type : serverWidget.FieldType.TEXT,
label : 'Text',
container : 'fieldgroupid'
});
var collapsed = fieldgroup.isCollapsed;
//...
//Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4335356208.html