x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<form action="/foo" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="ajnEFtiaLphEqbPW8onHUIOFXTBGxOh6Aqu-v0LN5u7bqtK9Z1sloxS4_qjZMf7U2-8gQBDIuLSQc5jZODtxZA" autocomplete="off" /> <div class="FormControl-spacingWrapper"> <div data-view-component="true"> <div class="FormControl-check-group-wrap"> <fieldset aria-describedby="validation-f22f8e18-ded6-4254-ae78-6e77a8e58140" class=""> <legend class="FormControl-label"> Cool places </legend> <div class="mb-2"> </div> <div class="FormControl-spacingWrapper"> <div class="FormControl-checkbox-wrap"> <input aria-describedby="caption-d228a2ac-26bc-4e20-90d2-88f4b2774d68" id="places_lopez" class="FormControl-checkbox" type="checkbox" value="lopez" name="places[]" /> <span class="FormControl-checkbox-labelWrap"> <label for="places_lopez" class="FormControl-label"> Lopez Island </label> <span class="FormControl-caption" id="caption-d228a2ac-26bc-4e20-90d2-88f4b2774d68"> <span>Vacation getaway</span> </span> </span> </div> <div class="FormControl-checkbox-wrap"> <input aria-describedby="caption-3a2c80c7-bc7b-4135-aa56-621318a46672" id="places_bellevue" class="FormControl-checkbox" type="checkbox" value="bellevue" name="places[]" /> <span class="FormControl-checkbox-labelWrap"> <label for="places_bellevue" class="FormControl-label"> Bellevue </label> <span class="FormControl-caption" id="caption-3a2c80c7-bc7b-4135-aa56-621318a46672"> Beautiful view </span> </span> </div> <div class="FormControl-checkbox-wrap"> <input aria-describedby="caption-4d5f53bd-0cbc-40e7-90b3-8112987a7f56" id="places_seattle" class="FormControl-checkbox" type="checkbox" value="seattle" name="places[]" /> <span class="FormControl-checkbox-labelWrap"> <label for="places_seattle" class="FormControl-label"> Seattle </label> <span class="FormControl-caption" id="caption-4d5f53bd-0cbc-40e7-90b3-8112987a7f56"> The emerald city </span> </span> </div> </div> </fieldset> <div class="mt-2"> <div class="FormControl-inlineValidation" id="validation-f22f8e18-ded6-4254-ae78-6e77a8e58140" hidden="hidden"> <span class="FormControl-inlineValidation--visual" data-target="" hidden><svg aria-hidden="true" data-component="Octicon" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill"> <path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path> </svg></span> <span class=" FormControl-inlineValidation--visual" data-target=""><svg aria-hidden="true" data-component="Octicon" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill"> <path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path> </svg></span> <span></span> </div> </div> </div> </div> </div></form>1
2
3
<%= primer_form_with(url: "/foo") do |f| %> <%= render(ArrayCheckBoxGroupForm.new(f)) %><% end %>No notes provided.
No params configured.
app/forms/array_check_box_group_form.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true# :nodoc:class ArrayCheckBoxGroupForm < ApplicationForm form do |check_form| # Passing a name: here causes the form to emit all the check boxes with the same name. # In the case below, the name of each will be "places[]". If a box is checked, the # resulting array will contain the corresponding value. check_form.check_box_group(name: "places", label: "Cool places") do |check_group| check_group.check_box(value: "lopez", label: "Lopez Island") check_group.check_box(value: "bellevue", label: "Bellevue", caption: "Beautiful view") check_group.check_box(value: "seattle", label: "Seattle", caption: "The emerald city") end endendapp/forms/array_check_box_group_form/places_lopez_caption.html.erb
1
<span>Vacation getaway</span>