Hi,
I set up ckeditor in my app following the github page's instructions
and using rails-ckeditor.
To use ckeditor for a field, basically did the following:
config.model MyModel do
edit do
field :description, :text do
ckeditor do
true
end
end
end
end
based on:
http://stackoverflow.com/questions/4572077/how-to-enable-ckeditor-on-a-field-in-rails-admin
This works great when i edit a model directly.
However, in a habtm or a has_many, if I click "add new" i get a popup
with a textarea without ckeditor.
Any ideas how i can get ckeditor in the popup form?
Thanks!