Modules

filter

 

Objects/Functions

module (N/record)

SuiteScript 2.0

Column.isDisabled

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

N/record Module
Column.isDisabled
Property Description: Indicates whether the column is disabled.
Type: boolean
Supported Script Types: Client and server-side scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/record Module
Sibling Object Members: Column Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Column.isDisabled

Example:

// Code Example 1
// 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.

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