Column.isDisabled

Note:

The content in this help topic pertains to SuiteScript 2.0.

Property Description

Indicates whether the column is disabled.

Type

boolean

Supported Script Types

Client and server scripts

For more information, see SuiteScript 2.x Script Types.

Module

N/currentRecord Module

Sibling Object Members

Column Object Members

Since

2020.2

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/currentRecord Module Script Samples.

            // Add additional code.
...
var sublistObj = recordObj.getSublist({
      sublistId: 'sublistId'
});
var columnObj = sublistObj.getColumn({
      fieldId: 'columnId'
});
//set
columnObj.isDisabled = true;
//get
var isDisabled = columnObj.isDisabled;
})...
// Add additional code. 

          

General Notices