Grouped Collection Select Alphabetical Order Rails

前端 未结 5 1317
天命终不由人
天命终不由人 2021-01-03 05:27

I finally figured out how to implement Dynamic Select menus using this tutorial.

Everything works, But how does one organize the Cities in t

5条回答
  •  孤城傲影
    2021-01-03 05:55

    Like others in this thread, I had issues getting this to work with scope. Instead I got this working in Rails 5 by adding another association to the State model:

    has_many :cities_by_name, -> { order(:name) }, class_name: 'City'

提交回复
热议问题