0

ネストされたフォームのフォームビルダーオブジェクトに添付されたckeditor gem(https://github.com/galetahub/ckeditor/issues/98)を使用できる人はいますか?ckeditor gem with railsネストされた属性

Gemfile:だから私は編集するCKEditorバージョンを使用しようと

has_many :comments 
accepts_nested_attributes_for :comments 

gem 'rails', '3.2.1' 
.... 
gem "nested_form" 
gem "ckeditor", "3.7.0.rc3" 

私はすなわち

post.rb、非常に単純なネストされたフォームアプリケーションに問題を抽出コメント。表示は次のようになります。

<%= nested_form_for(@post) do |f| %> 

<%= f.label :post_content %> 

<%= f.text_area :post_content %> 
<%= f.fields_for :comments do |cf| %> 
<%= cf.cktext_area :comment_content %> 
<% end %> 
.... 

通常のテキスト領域がコメントの内容として表示されます。フォームのポスト部分の「f.text_area」を「f.cktext_area」に切り替えると、ポスト・コンテンツのckeditorが表示されます。

フォームのレンダリング時にエラーがログに記録されません。

何か不足していますか?

答えて

1

あなたとCKEditorバージョンのファイルを生成しました:

rails generate ckeditor:models --orm=active_record --backend=paperclip 
関連する問題