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

I need view formatting money, but it removes the sorting link for the column from the header.

I Use footable

1
please add more detail what you mean by sort not working if it is about the link removed from the column name for sorting then the answer below will work for youMuhammad Omer Aslam

1 Answers

3
votes

you should use label option instead of header

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