我正在尝试在项目中使用datagrid gem。我想将数字列右对齐,但似乎无法做到这一点。
我的admin_plans_grid.rb是
class AdminPlansGrid < BaseGrid
scope do
Plan
end
filter(:id, :integer)
filter(:created_at, :date, :range => true)
filter(:plan_type)
column(:id)
column(:name)
column(:term)
column(:cost) do
style="text-align:right"
self.cost
end
column(:plan_type)
date_column(:created_at)
column(:actions, html: true) do |model|
# link_to "Show", admin_plan
end
end
我一直在尝试更改费用列,例如上面显示的内容
column(:cost) do
style="text-align:right"
self.cost
end
我尝试了span和其他一些想法,但没有任何效果。
问题-如何获取费用列中的数据以右对齐或小数对齐?