我正在使用Rails管理员。我有一个名为Order
的模型。 Order
模型有Description
字段。当我查看rails admin中的订单列表时,orders
的描述字段未完全显示。只显示部分文本和省略号。
示例:Some information about ordering ...
。
如何在不剪切的情况下完全显示Description
?
config.model Orders do
list do
filters [:status, :created_at]
field :created_at do
label "Request date"
strftime_format "%b %d, %l:%M%P %Y"
end
field :description
field :status
field :scheduled_date do
strftime_format "%a %b, %d"
end
field :address do
filterable false
end
end
end
答案 0 :(得分:0)
您应该能够以这种方式增加description
字段的长度:
field :description, :text do
html_attributes do
{:maxlength => 600}
end
end