有一个数字栏代表价格。如何将其在表格网格中向右对齐。 累了
$this->crud->addColumn([
'name' => 'amount',
'type' => 'number',
'label' => 'Amount',
'align' => 'right',
]);
答案 0 :(得分:0)
嗯...我不认为有一种方法可以对现有的列进行处理。但是,要实现这一目标的快速方法是create your own column type,例如... number_aligned_right
,基于the code for the numbers column。
答案 1 :(得分:0)
在 2018 年没有办法,但在 2021 年,我可以使用这样的包装器将一列向右对齐:
$this->crud->addColumn([
'name' => 'amount',
'type' => 'number',
'label' => 'Amount',
'wrapper' => [
'element' => 'span',
'style' => 'float:right',
],
]);