Sort.ascending
Property Description |
Whether the sort direction is ascending. This property is set during the of Query.createSort(options) and Component.createSort(options). The default value of this property is |
Type |
boolean |
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2018.2 |
Syntax
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 theAscending = myCustomerQuery.sort[0].ascending;
...
// Add additional code