Is it possible to overrule simpleform\'s naming of textfields within a form?
This:
= f.input_field :age_from,
Outputs in:
Like your other question html options should be passed in input_html hash in simple_form:
<%= f.input :age_from, ..., :input_html => { :id => 'my_id' } %> should work.
I think you need to pass it in the html attribute hash
html: {id: 'query'}