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
<form action="/foo" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="9tmUu7NsBQIi3227Gwy4po_aOa0NX34T1BU-MuOC-2UCdXSC38G3S96Im53CXfMHGPDjqznVBynw9HMhTXiErA" autocomplete="off" />
<div class="FormControl-spacingWrapper">
<primer-text-field class="FormControl width-full FormControl--fullWidth">
<label class="FormControl-label" for="ultimate_answer">
Ultimate answer
<span aria-hidden="true">*</span>
</label>
<div class="FormControl-input-wrap">
<input aria-required="true" aria-describedby="validation-2b557e25-8263-4fff-be11-4d7994c99d5f caption-2b557e25-8263-4fff-be11-4d7994c99d5f" data-target="primer-text-field.inputElement " class="FormControl-input FormControl-medium" type="text" name="ultimate_answer" id="ultimate_answer" />
</div>
<div class="FormControl-inlineValidation" id="validation-2b557e25-8263-4fff-be11-4d7994c99d5f" hidden="hidden">
<span class="FormControl-inlineValidation--visual" data-target="primer-text-field.validationSuccessIcon" 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="primer-text-field.validationErrorIcon"><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>
<span class="FormControl-caption" id="caption-2b557e25-8263-4fff-be11-4d7994c99d5f">The answer to life, the universe, and everything</span>
</primer-text-field>
<div class="FormControl-checkbox-wrap">
<input name="enable_ipd" type="hidden" value="0" autocomplete="off" /><input aria-describedby="caption-c6a42c7b-b562-49f8-bdbf-c25b1223ea74" class="FormControl-checkbox" type="checkbox" value="1" name="enable_ipd" id="enable_ipd" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="enable_ipd">
Enable the Infinite Improbability Drive
</label> <span class="FormControl-caption" id="caption-c6a42c7b-b562-49f8-bdbf-c25b1223ea74">Cross interstellar distances in a mere nothingth of a second.</span>
</span>
</div>
</div>
</form>
1
2
3
<%= primer_form_with(url: "/foo") do |f| %>
<%= render(TextFieldAndCheckboxForm.new(f)) %>
<% end %>

app/forms/text_field_and_checkbox_form.rb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true
# :nodoc:
class TextFieldAndCheckboxForm < ApplicationForm
form do |my_form|
my_form.text_field(
name: :ultimate_answer,
label: "Ultimate answer",
required: true,
caption: "The answer to life, the universe, and everything"
)
my_form.check_box(
name: :enable_ipd,
label: "Enable the Infinite Improbability Drive",
caption: "Cross interstellar distances in a mere nothingth of a second."
)
end
end