kartik-v / yii2-grid

Enhanced GridView with various utilities for Yii Framework 2.0
http://demos.krajee.com/grid
Other
557 stars 302 forks source link

Enhance sorter link rendering to include customizable sorter icons #1010

Closed kartik-v closed 2 years ago

kartik-v commented 2 years ago

Description of GridView::sorterIcons:

    /**
     * @var array the configuration for sorter icons. The array key must have an `SORT_ASC` and
     * SORT_DESC entry. The `sorterIcons` property defaults to following if not overridden:
     * For Bootstrap 4.x and 5.x:
     * [
     *   SORT_ASC => '<i class="fas fa-sort-amount-down-alt"></i>',
     *   SORT_DESC => '<i class="fas fa-sort-amount-up"></i>'
     * ]
     * For Bootstrap 3.x:
     * [
     *   SORT_ASC => '<i class="glyphicon glyphicon-sort-by-attributes"></i>',
     *   SORT_DESC => '<i class="glyphicon glyphicon-sort-by-attributes-alt"></i>',
     * ]
     */
    public $sorterIcons = [];