Hi,
I have a simple form using form_for but I need to have a field in the form that uses select_time which is not part of the FormHelper and there lies the issue.
<%= form_for [:admin, @restaurant, @opening_hour] do |f| %>
<%= f.label :day %>
<%= f.text_field :day %>
<%= f.label :start_time %>
<%= select_time Time.now, prefix: :start_time %>
``
``
The form above works fine except that the params passed over to the controller is separate:
params[:opening_hour]
params[:start_time]
Now as a newbie, all I have been doing in the controller is to use one params, params[:opening_hour], for all the form data. But with this form that produces two params, I don’t know how to combine them both into one so my controller will work. Especially cos the params maps to the model object.
Any ideas?
Thanks in advance.