You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
352 B
16 lines
352 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 20.11.2017
|
||
|
*/
|
||
|
|
||
|
namespace backend\widgets\grid;
|
||
|
|
||
|
class CheckBoxColumn extends \yii\grid\CheckboxColumn
|
||
|
{
|
||
|
public $headerOptions = ['class' => 'text-center', 'style' => 'width: 3em'];
|
||
|
public $contentOptions = [
|
||
|
'class' => 'text-center grid_checkbox',
|
||
|
];
|
||
|
public $name = 'gridSelection';
|
||
|
}
|