2012-04-01 44 views
4

我想讓我的號碼對齊,並與千位分隔符。有人能指引我朝着正確的方向嗎?Rails的ActiveAdmin索引格式編號

ActiveAdmin.register Thing do 
    index do 
    column :id 
    column :amount # need to make this fomatted nicely 

    default_actions 
end 
end 

回答

2

或者:

在你的CSS
column :amount, :class => 'text-right' do |thing| 
    number_to_currency thing.amount 
end 

然後

.text-right { text-align: right;}