2amigos / yii2-grid-view-library

Highly enhanced GridView widget and grid components for Yii2
https://2amigos.us
Other
57 stars 16 forks source link

ToggleColumn offIcon property is working incorrect #13

Closed Lexxtor closed 7 years ago

Lexxtor commented 9 years ago
[
    'class' => \dosamigos\grid\ToggleColumn::className(),
    'attribute' => 'moderated',
    'onLabel' => 'Yes',
    'offLabel' => 'No',
    'contentOptions' => ['class' => 'text-center'],
    'filter' => [
        1 => 'Yes',
        0 => 'No'
    ]
],
[
    'class' => \dosamigos\grid\ToggleColumn::className(),
    'attribute' => 'published',
    'onLabel' => 'Yes',
    'offLabel' => 'No',
    'offIcon' => 'glyphicon glyphicon-remove-circle text-danger',
    'contentOptions' => ['class' => 'text-center'],
    'filter' => [
        1 => 'Yes',
        0 => 'No'
    ]
],

First span tag have a "glyphicon glyphicon-remove-circle" class value after page load and "glyphicon glyphicon-remove-circle label-danger" after I click on it.

tonydspaniard commented 9 years ago

Sorry for the late response. Quite busy atm... will have a look asap thanks for reporting. If you have found the solution let me know. Thanks!