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
51
<form action="/view-components/rails-app/form_handler" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="Jn5r37IeNqKPnud_xmlz-BkzvanoT6S0pKxgtE2LFH9Y7ZgL-UVsTSJqbaLw8-U-VSGGdWJoOMKT-PK1G1I84A" autocomplete="off" />
<div class="FormControl-spacingWrapper">
<div class="FormControl width-full FormControl--fullWidth">
<label class="FormControl-label" for="cities">
Cool cities
</label>
<div class="FormControl-select-wrap">
<select aria-describedby="validation-b731b789-85b6-45eb-bcba-f2bc04d2ee02 caption-b731b789-85b6-45eb-bcba-f2bc04d2ee02" class="FormControl-select FormControl-medium" name="cities" id="cities"><option value="" label=" "></option>
<option value="lopez_island">Lopez Island</option>
<option value="bellevue">Bellevue</option>
<option value="seattle">Seattle</option></select>
</div>
<div class="FormControl-inlineValidation" id="validation-b731b789-85b6-45eb-bcba-f2bc04d2ee02" 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>
<span class="FormControl-caption" id="caption-b731b789-85b6-45eb-bcba-f2bc04d2ee02">Select your favorite!</span>
</div>
<div class="FormControl width-full FormControl--fullWidth">
<label class="FormControl-label" for="been">
Places you've been
</label>
<div class="FormControl-select-wrap" data-multiple="true">
<select aria-describedby="validation-e1ac2977-2ee9-4f0c-839f-c2fd99db28b4 caption-e1ac2977-2ee9-4f0c-839f-c2fd99db28b4" class="FormControl-select" multiple="multiple" name="been[]" id="been"><option value="lima">Lima, Peru</option>
<option value="tokyo">Tokyo, Japan</option>
<option value="reykjavik">Reykjavík, Iceland</option>
<option value="chiang_mai">Chiang Mai, Thailand</option>
<option value="queenstown">Queenstown, New Zealand</option></select>
</div>
<div class="FormControl-inlineValidation" id="validation-e1ac2977-2ee9-4f0c-839f-c2fd99db28b4" 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>
<span class="FormControl-caption" id="caption-e1ac2977-2ee9-4f0c-839f-c2fd99db28b4">Select all that apply</span>
</div>
<button name="submit" value="Submit" data-disable-with="Submit" type="submit" data-view-component="true" class="FormField-input flex-self-start Button--secondary Button--medium Button"> <span class="Button-content">
<span class="Button-label">Submit</span>
</span>
</button>
</div>
</form>
1
2
3
<%= primer_form_with(url: generic_form_submission_path) do |f| %>
<%= render(SelectForm.new(f)) %>
<% end %>

app/forms/select_form.rb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
# :nodoc:
class SelectForm < ApplicationForm
form do |select_form|
select_form.select_list(name: "cities", label: "Cool cities", caption: "Select your favorite!", include_blank: true) do |city_list|
city_list.option(label: "Lopez Island", value: "lopez_island")
city_list.option(label: "Bellevue", value: "bellevue")
city_list.option(label: "Seattle", value: "seattle")
end
select_form.select_list(name: "been", label: "Places you've been", caption: "Select all that apply", multiple: true, include_hidden: false) do |been_list|
been_list.option(label: "Lima, Peru", value: "lima")
been_list.option(label: "Tokyo, Japan", value: "tokyo")
been_list.option(label: "Reykjavík, Iceland", value: "reykjavik")
been_list.option(label: "Chiang Mai, Thailand", value: "chiang_mai")
been_list.option(label: "Queenstown, New Zealand", value: "queenstown")
end
select_form.submit(name: :submit, label: "Submit")
end
end