= simple_form_for @foo do |f|
# this works
= f.hidden_field :asdf, :value => @some.thing
# this works
= f.input :asdf, :as => "hidden", :input_html => { :value => @some.thing }
# Why doesn't this work, exactly?
= f.input :title, :as => "hidden", :value => @some.thing
ログを見ると、後者の入力で値が空の文字列として送信されていることがわかりますが、なぜこれが起こっているのかはわかりません。