Angular Grid Manual Sorting
The manual sorting gives the developer full control over the arranging of the data in the desired order. Compared to the sorting with the built-in directive, the manual approach provides greater transparency of the process because it requires you to handle the Grid events manually. The manual sorting is especially useful when you require additional customizations of the sorting logic.
To enable sorting:
- Set the
sortable
property. - Bind the
sort
option to a collection ofSortDescriptor
objects. - Handle either of the following events:
sortChange
event—Use this event when you enable only the sorting data operation.dataStateChange
event—Use this event when you enable more than one data operation, for example, sorting and filtering. For more details, check the section on how to handle multiple data operations.
The steps above are identical regardless if you process the data locally or send a request to the server to sort the data.
Sorting Local Data
To sort local data, use the built-in orderBy()
or process()
functions.
When other data operations like paging, filtering, or grouping, are also enabled, handle the
dataStateChange
event instead ofsortChange
and use theprocess()
method. For more details, check the section on how to handle multiple data operations.
The following example demonstrates how to sort the data by handling the sortChange
event and using the orderBy()
function.
Sorting on the Server
Handle the sortChange
, or dataStateChange
event to send a request containing information about the current Grid state to the server. For more details, check the section on how to handle multiple data operations using remote data.