[ACS-5704][Community request] ObjectDataTableAdapter sorting (#9272)

* [ACS-5704] change table sorting

* [ACS-5704] change table sorting

* [ACS-5704] change table sorting

* [ci:force] fix integer mapping

* [ACS-5704] set alphanumeric sorting as default
This commit is contained in:
tamaragruszka
2024-02-09 17:07:19 +01:00
committed by GitHub
parent cddbcc0700
commit 01b6bc6417
6 changed files with 43 additions and 38 deletions

View File

@@ -35,10 +35,10 @@ Get the data value from a specific table cell.
`getSorting():`[`DataSorting`](../../../lib/core/src/lib/datatable/data/data-sorting.model.ts)`;`<br/>
`setSorting(sorting: DataSorting): void;`<br/>
Get/set the sorting key and direction (ascending or descending).
Get/set the sorting key, direction (ascending or descending) and options (eg. numeric).
`sort(key?: string, direction?: string): void;`<br/>
Sort the table with a specified key and direction (ascending or descending).
`sort(key?: string, direction?: string, options?: Intl.CollatorOptions): void;`<br/>
Sort the table with a specified key, direction (ascending or descending) and options (eg. numeric).
## Details