ドロップダウン/選択テキストフィールドで、特定の値をデフォルトで選択されたものにしようとしています。私は無駄に多くのオプションを試しました。Profile モデルの値に基づいてデフォルトを設定する方法を誰が知っていますか?
= f.input_field :state_id,
:label => "Your state",
:collection => DataState.all,
:default => [DataState.where(:id => @user.profile.state_id)],
:style => "width: 110px !important"
私はsimple_formを使用しています