2011-01-17 8 views

答えて

10

オプション:警告(すなわち、ソースを見てみると、空

トリミング、それが生成されformtasticのように見える?プロンプトが助けることができますあなたですか?

form.input :organization, 
    :collection => Organization.all(:order => :title), 
    :prompt => "some text" 

おはよう!ここで

4

は、同様の問題と答えている:

Using :collection and :include_blank in Formtastic. How to do it?

彼がたとえば...あなたは:include_blank => trueを追加する場合、それが動作すると言う:私の場合は

f.input(:author, :as => :select, :include_blank => true) 

を、私はhas_and_belongs_to_manyアソシエーションを持っていて、自動的に空白のオプションがあります。

f.input :groups, :as => :check_boxes, :collection => current_admin_user.groups.order("created_at ASC").all 

私は、このガイドに従ってください:https://github.com/justinfrench/formtastic#the-available-inputs

は私が助けるために願っています!

関連する問題