Sha256: 4930bbcecdde316f9f490cb8d5ac93132383b1867e355e09377f080a2dac9e0c
Contents?: true
Size: 995 Bytes
Versions: 9
Compression:
Stored size: 995 Bytes
Contents
<% form_id = dom_id(@criterion, :form) %> <%= turbo_stream.update dom_id(@criterion) do %> <%= tag.div class: "refine--criterion-fields", data: { controller: "refine--criterion-form", refine__criterion_form_url_value: new_refine_inline_criterion_url( @criterion.to_params), refine__criterion_form_form_id_value: form_id } do %> <%= fields model: @criterion do |form| %> <%= render "form_fields", form: form, conjunction: @conjunction, position: @position, form_id: form_id %> <% end %> <% end %> <% end %> <%# The actual form tag is appended to the end of the body html. Inputs are attached using the `form` attribute. This allows the query builder to be placed inside an outer form on the page. %> <%= turbo_stream.append_all "body" do %> <%= form_with url: refine_inline_criteria_path, method: :post, id: form_id, data: {controller: "refine--turbo-stream-form", action: "submit->refine--turbo-stream-form#submit"} %> <% end %>
Version data entries
9 entries across 9 versions & 1 rubygems