Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16486 программистов и 1671 робот. Сейчас ищут 1658 программистов ...
Structures_DataGrid::setDefaultSort
Вернуться к: Class Structures_DataGrid
Structures_DataGrid::setDefaultSort
Structures_DataGrid::setDefaultSort() – Set default sorting specification
Synopsis
require_once 'Structures/DataGrid.php';
mixed Structures_DataGrid::setDefaultSort ( array $sortSpec )
If there is no sorting query in the HTTP request, and if the sortRecordSet() method is not called, then the specification passed to setDefaultSort() will be used.
This is especially useful if you want the data to already be sorted when a user first see the datagrid.
This method needs to be called before bind().
Parameter
- array $sortSpec
-
Sorting specification Structure: array(fieldName => direction, ...)
Return value
returns Either true or a PEAR_Error object
Throws
throws no exceptions thrown
Note
This function can not be called statically.
Вернуться к: Class Structures_DataGrid