kartik-v / yii2-dynagrid

Turbo charge the Yii 2 GridView with personalized columns, page size, and themes.
http://demos.krajee.com/dynagrid
Other
74 stars 66 forks source link

Ability to configure all icons #195

Closed kartik-v closed 6 years ago

kartik-v commented 6 years ago

Enhanced DynaGrid to include icon properties and allow configuring icon markups better for BS3 and BS4.

New static protected property $_icons which has default CSS classes for the icons for BS3 and BS4

protected static $_icons = [
    'iconVisibleColumn' => ['eye-open', 'eye'],
    'iconHiddenColumn' => ['eye-close', 'eye-slash'],
    'iconSortableSeparator' => ['resize-horizontal', 'arrows-alt-h'],
    'iconPersonalize' => ['wrench', 'wrench fa-fw'],
    'iconFilter' => ['filter', 'filter fa-fw'],
    'iconSort' => ['sort', 'sort fa-fw'],
    'iconConfirm' => ['ok', 'check'],
    'iconRemove' => ['remove', 'times'],
];