| 1 | <?php |
||
| 16 | class CheckboxColumn extends \yii\grid\CheckboxColumn |
||
| 17 | { |
||
| 18 | use FeaturedColumnTrait { |
||
| 19 | registerClientScript as traitRegisterClientScript; |
||
| 20 | } |
||
| 21 | |||
| 22 | public $attribute; |
||
| 23 | |||
| 24 | public function registerClientScript() |
||
| 29 | |||
| 30 | /** {@inheritdoc} */ |
||
| 31 | public $defaultOptions = [ |
||
| 32 | 'headerOptions' => [ |
||
| 33 | 'style' => 'width:1em', |
||
| 34 | ], |
||
| 35 | 'checkboxOptions' => [ |
||
| 36 | 'class' => 'icheck', |
||
| 37 | ], |
||
| 38 | ]; |
||
| 39 | } |
||
| 40 |