Yii2:从列标题

时间:2018-03-21 00:29:01

标签: gridview datagridview yii yii2 footable

[
    'header' => Yii::t('app', 'Price') . ' usd.',
    'contentOptions' => [ 'class' => 'text-right'],
    'attribute' => 'price',
    'format'=>['decimal',2],
    'headerOptions' => ['data-type'=>'number'],
]

我需要查看格式化资金,但它会从标题中删除列的排序链接。

我使用footable

1 个答案:

答案 0 :(得分:0)

您应该使用label选项而不是header

[
    'label' => Yii::t('app', 'Price') . ' usd.',
    'contentOptions' => [ 'class' => 'text-right'],
    'attribute' => 'price',
    'format'=>['decimal',2],
    'headerOptions' => ['data-type'=>'number'],
]