我不想在Rails管理员中为整数字段输入负数。我怎样才能在前端限制这个?
Rails管理员似乎没有从模型中读取我的验证,但似乎并没有在其DSL中指定它。这是我的模特:
# capacity:integer
class Contest < ActiveRecord::Base
validates :capacity, :numericality => { :greater_than => 0 }
我看到RailsAdmin uses the number_field helper,has this option。但我不清楚如何将选项传递给那个......
答案 0 :(得分:0)