<%= bootstrap_form_for(@result, url: result_text_path(format: :json), remote: :true) do |f| %> <%= f.text_field :name, style: "margin-top: 10px;" %>
<%= f.fields_for :result_text do |ff| %> <%= ff.tiny_mce_editor(:text, id: :result_text_attributes_textarea, value: @result.result_text.tinymce_render(:text), data: { object_type: 'result_text', object_id: @result.result_text.id, highlightjs_path: asset_path('highlightjs-github-theme.css') }) %> <% end %>
<%= f.submit t("general.save"), class: 'btn btn-success save-result', onclick: "Results.processResult(event, Results.ResultTypeEnum.TEXT, true);" %>
<% end %>