有没有办法将范围应用于 time_select 助手?
我正在尝试将其设置为有效的工作时间,例如:
time_select('object_name', 'method', { :start_hour => 09, :end_hour => 17, :minute_step => 05 })
我应该怎么做?
有没有办法将范围应用于 time_select 助手?
我正在尝试将其设置为有效的工作时间,例如:
time_select('object_name', 'method', { :start_hour => 09, :end_hour => 17, :minute_step => 05 })
我应该怎么做?
你不能那样做。您必须更改 DateTimeSelector 上的 select_hour 方法,如下所示:
module ActionView
module Helpers
class DateTimeSelector
def select_hour
if @options[:use_hidden] || @options[:discard_hour]
build_hidden(:hour, hour)
else
build_options_and_select(:hour, hour, :start => @options[:start_hour], :end => @options[:end_hour], :ampm => @options[:ampm])
end
end
end
end
end
(未测试)