Column.isSortable

Property Description

Indicates whether the column is sortable.

Type

boolean (read-only)

Supported Script Types

Client scripts

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

Module

N/record 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/record Module Script Samples.

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

          

General Notices