문제

I am using the following DSL in simple_form:

<%= m.association :accessories, label_method: :full_name, value_method: :id, include_blank: false %>

I would like to re-order the dropdown list to be sorted alphabetically by :full_name

도움이 되었습니까?

해결책

According to the simple_form readme, there's no option to do that. In order to achieve what you want to do, you can pass a collection option.

<%= m.association :accessories, collection: Accessory.order(:name), label_method: :full_name, value_method: :id, include_blank: false %>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top