[
'header' => Yii::t('app', 'Price') . ' usd.',
'contentOptions' => [ 'class' => 'text-right'],
'attribute' => 'price',
'format'=>['decimal',2],
'headerOptions' => ['data-type'=>'number'],
]
我需要查看格式化资金,但它会从标题中删除列的排序链接。
我使用footable
答案 0 :(得分:0)
您应该使用label
选项而不是header
[
'label' => Yii::t('app', 'Price') . ' usd.',
'contentOptions' => [ 'class' => 'text-right'],
'attribute' => 'price',
'format'=>['decimal',2],
'headerOptions' => ['data-type'=>'number'],
]