ryanb / nested_form

Rails plugin to conveniently handle multiple models in a single form.
MIT License
1.79k stars 505 forks source link

Bootsy wysiwyg editor not supported for nested forms #376

Open om-nishu-trantor opened 7 years ago

om-nishu-trantor commented 7 years ago

Hi, I am facing issue mentioned here: http://stackoverflow.com/questions/38434751/bootsy-editor-not-working-for-nested-attribtues-added-through-nested-form-gem one liner - bootsy wysiwyg editor area is not populating in nested fields.

Help is appreciable.

CyrilFouh commented 7 years ago

Have you find any solution on this problem?

CyrilFouh commented 7 years ago

Finally, I find a way to fix you issue. Inspired by the Ryanb example with datepicker: $(document).on('nested:fieldAdded', function(event){ var field = event.field; var wysihtml5Field = field.find('.wysihtml5'); wysihtml5Field.wysihtml5(); }); It work for me ;)

om-nishu-trantor commented 7 years ago

:+1: