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
<form action="/foo" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="mkOyQyYo0ET-_EG-_beLSa9S-ei347ZvmEZu4D85S8akJLJhdQuu-P4oZPm7Q9f5Ve4NPVIDI_cV2MsYVBd-Aw" autocomplete="off" /> <div class="FormControl-spacingWrapper"> <div data-view-component="true"> <div class="FormControl-radio-group-wrap"> <fieldset role="radiogroup" aria-describedby="validation-30efd8ca-55b8-470c-9fbf-85919dc188dd caption-30efd8ca-55b8-470c-9fbf-85919dc188dd" class=""> <legend class="FormControl-label"> How did you hear about us? </legend> <div class="mb-2"> <span class="FormControl-caption" id="caption-30efd8ca-55b8-470c-9fbf-85919dc188dd">We love our listeners</span> </div> <div class="FormControl-spacingWrapper"> <div class="FormControl-radio-wrap"> <input aria-describedby="caption-37f5a966-2638-4a59-ab91-2f30f7024de2" class="FormControl-radio" type="radio" value="online" name="channel" id="channel_online" /> <span class="FormControl-radio-labelWrap"> <label class="FormControl-label" for="channel_online"> Online advertisement </label> <span class="FormControl-caption" id="caption-37f5a966-2638-4a59-ab91-2f30f7024de2">Facebook maybe?</span> </span> </div> <div class="FormControl-radio-wrap"> <input aria-describedby="caption-24884bc1-c941-4bb8-95ac-e30434e4dbbd" class="FormControl-radio" type="radio" value="radio" name="channel" id="channel_radio" /> <span class="FormControl-radio-labelWrap"> <label class="FormControl-label" for="channel_radio"> Radio advertisement </label> <span class="FormControl-caption" id="caption-24884bc1-c941-4bb8-95ac-e30434e4dbbd">We love us some NPR</span> </span> </div> <div class="FormControl-radio-wrap"> <input aria-describedby="caption-5a04db17-db35-4db3-8976-8bdedd1ec911" class="FormControl-radio" type="radio" value="friend" name="channel" id="channel_friend" /> <span class="FormControl-radio-labelWrap"> <label class="FormControl-label" for="channel_friend"> From a friend </label> <span class="FormControl-caption" id="caption-5a04db17-db35-4db3-8976-8bdedd1ec911">Wow, what a good person</span> </span> </div> </div> </fieldset> <div class="mt-2"> <div class="FormControl-inlineValidation" id="validation-30efd8ca-55b8-470c-9fbf-85919dc188dd" 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> </div> </div></form>
1
2
3
<%= primer_form_with(url: "/foo") do |f| %> <%= render(RadioButtonGroupForm.new(f)) %><% end %>
No notes provided.
No params configured.
app/forms/radio_button_group_form.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true# :nodoc:class RadioButtonGroupForm < ApplicationForm form do |radio_form| radio_form.radio_button_group( name: "channel", label: "How did you hear about us?", caption: "We love our listeners" ) do |radio_group| radio_group.radio_button(value: "online", label: "Online advertisement", caption: "Facebook maybe?") radio_group.radio_button(value: "radio", label: "Radio advertisement", caption: "We love us some NPR") radio_group.radio_button(value: "friend", label: "From a friend", caption: "Wow, what a good person") end endend