我想在index.php中把第一列的宽度设定为100px大小,要怎么写代码
index.php代码如下:
'columns' => [
['class' => 'yii\grid\CheckboxColumn'],
[
'attribute' => 'sort',
'format' => 'raw',
'value' => function($model){
return Html::textInput("sorts[{$model->id}]", $model->sort, ['style'=>'width:40px']);
}
],
]