Sort.locale

Note:

The content in this help topic pertains to SuiteScript 2.0.

Property Description

The locale to use for the sort.

This property uses values from the query.SortLocale enum. This property is set during the execution of Query.createSort(options) and Component.createSort(options).

A locale represents a combination of language and region, and it can affect how certain values (such as strings) are sorted. For example, languages that share the same alphabet may sort characters differently. Use this property to ensure that query results are sorted using locale-specific rules.

Type

string

Module

N/query Module

Parent Object

query.Sort

Sibling Object Members

Sort Object Members

Since

2018.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/query Module Script Samples.

            // Add additional code
...
var myCustomerQuery = query.create({ type: query.Type.CUSTOMER
}); myCustomerQuery.columns = [ myCustomerQuery.createColumn({ fieldId: 'entityid' })
]; myCustomerQuery.sort = [ myCustomerQuery.createSort({ column: myCustomerQuery.columns[0], ascending: false, caseSensitive: true, locale: query.SortLocale.EN_CA, nullsLast: false })
]; var theLocale = myCustomerQuery.sort[0].locale;
...
// Add additional code 

          

Related Topics

query.Query
N/query Module
SuiteScript 2.x Modules
SuiteScript 2.x

General Notices