Yii2:从列 header 中删除了 GridView 排序
Yii2: GridView Sorting removed from column header
[
'header' => Yii::t('app', 'Price') . ' usd.',
'contentOptions' => [ 'class' => 'text-right'],
'attribute' => 'price',
'format'=>['decimal',2],
'headerOptions' => ['data-type'=>'number'],
]
我需要查看格式化资金,但它删除了 header 中列的排序 link。
我用footable
你应该使用 label
选项而不是 header
[
'label' => Yii::t('app', 'Price') . ' usd.',
'contentOptions' => [ 'class' => 'text-right'],
'attribute' => 'price',
'format'=>['decimal',2],
'headerOptions' => ['data-type'=>'number'],
]
[
'header' => Yii::t('app', 'Price') . ' usd.',
'contentOptions' => [ 'class' => 'text-right'],
'attribute' => 'price',
'format'=>['decimal',2],
'headerOptions' => ['data-type'=>'number'],
]
我需要查看格式化资金,但它删除了 header 中列的排序 link。
我用footable
你应该使用 label
选项而不是 header
[
'label' => Yii::t('app', 'Price') . ' usd.',
'contentOptions' => [ 'class' => 'text-right'],
'attribute' => 'price',
'format'=>['decimal',2],
'headerOptions' => ['data-type'=>'number'],
]