Using SimpleForm, Can I set the default values for :label_method and :value_method so I do not need to set it for each input?
By default, I mean a place to set label_method and value_method for all my inputs, so I do not need to set them for each input.
Example:
Instead of this:
<%= f.association :model_in_question, include_blank: false, label_method: :label_for_form, value_method: :value_for_form %>
I want this:
<%= f.association :model_in_question, include_blank: false %>