This method allows you to sort the data set that is in the datagrid. If you are using a datasource object such as DB_DataObject, it will attempt to run the relevent sort method. Otherwise it will sort the array using PHP's multisort function.
The column to sort the data set by
The direction to sort. The only values available are 'ASC' for an ascending sort or 'DESC' for a descending sort.
For the DataSource drivers Array, CSV, RSS and XML sortRecordSet() needs to be called after bind().
For all other DataSource drivers like DataObject, DB, DBQuery, DBTable sortRecordSet() needs to be called after before bind().
Example 55-1. Sorting a record set.
|