Created
August 4, 2016 10:49
-
-
Save cloudsben/320d55dc0c29dbbd86e4472eee19be7f to your computer and use it in GitHub Desktop.
simple form association collection option
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= f.association :country, label: "请选择国家", | |
disabled: true, collection: Proc.new{ Country.all.map{ |c| [c.name, c.id, {data_country: c.short_name}] } } %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment