Previews

No matching results.

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
<form action="/foo" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="lKCSwu78EWYHEycWqiECESx5X_gvhHD56ubk0Z019rMLe1aDt37ughuheTM5Cm0xNGSs3cNOt1IqU37hsCaw9A" autocomplete="off" />
<div class="FormControl-spacingWrapper">
<div aria-describedby="validation-3f251e3c-ec6c-47a4-8bb9-b9b074a3abd1" class="FormControl-check-group-wrap">
<fieldset>
<legend class="FormControl-label mb-2">
I like to eat, eat, eat:
</legend>
<div class="FormControl-spacingWrapper">
<div class="FormControl-checkbox-wrap">
<input name="long_a" type="hidden" value="0" autocomplete="off" /><input aria-describedby="validation-1bfd313b-c992-46b9-94a5-3eb6ad76fab5 caption-1bfd313b-c992-46b9-94a5-3eb6ad76fab5" class="FormControl-checkbox" type="checkbox" value="1" name="long_a" id="long_a" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="long_a">
Ey-ples and ba-naynays
</label> <span class="FormControl-caption" id="caption-1bfd313b-c992-46b9-94a5-3eb6ad76fab5">Long "A" sound</span>
</span>
</div>
<div class="FormControl-checkbox-wrap">
<input name="long_i" type="hidden" value="0" autocomplete="off" /><input aria-describedby="validation-ce8b6941-7e50-4e35-a89b-63d093cdfbb7 caption-ce8b6941-7e50-4e35-a89b-63d093cdfbb7" class="FormControl-checkbox" type="checkbox" value="1" name="long_i" id="long_i" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="long_i">
Eye-ples and ba-nainais
</label> <span class="FormControl-caption" id="caption-ce8b6941-7e50-4e35-a89b-63d093cdfbb7">Long "I" sound</span>
</span>
</div>
<div class="FormControl-checkbox-wrap">
<input name="long_o" type="hidden" value="not_long_o" autocomplete="off" /><input aria-describedby="validation-4f97d2a6-fac5-408c-aeaa-10b14727cdec caption-4f97d2a6-fac5-408c-aeaa-10b14727cdec" class="FormControl-checkbox" type="checkbox" value="long_o" name="long_o" id="long_o" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="long_o">
Oh-ples and ba-nonos
</label> <span class="FormControl-caption" id="caption-4f97d2a6-fac5-408c-aeaa-10b14727cdec">Long "O" sound</span>
</span>
</div>
</div>
</fieldset>
<div class="mt-2">
<div class="FormControl-inlineValidation" id="validation-3f251e3c-ec6c-47a4-8bb9-b9b074a3abd1" hidden="hidden">
<span class="FormControl-inlineValidation--visual" data-target="" hidden><svg aria-hidden="true" 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" 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 class="mt-2">
</div>
</div>
</div>
</form>
1
2
3
<%= primer_form_with(url: "/foo") do |f| %>
<%= render(CheckBoxGroupForm.new(f)) %>
<% end %>

app/forms/check_box_group_form.rb

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
# frozen_string_literal: true
# :nodoc:
class CheckBoxGroupForm < ApplicationForm
form do |check_form|
check_form.check_box_group(label: "I like to eat, eat, eat:") do |check_group|
check_group.check_box(
name: "long_a",
label: "Ey-ples and ba-naynays",
caption: 'Long "A" sound'
)
check_group.check_box(
name: "long_i",
label: "Eye-ples and ba-nainais",
caption: 'Long "I" sound'
)
check_group.check_box(
name: "long_o",
value: "long_o",
unchecked_value: "not_long_o",
label: "Oh-ples and ba-nonos",
caption: 'Long "O" sound'
)
end
end
end