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
<form id="asdf" action="/abc" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="9CuKKgqqek-uxedxl036NT_NZqug9Di5SLn3Pv3aMMuIN4GlK983vkumBzqh3uEyrEdcVHMARnKbcHFcwBAk0Q" autocomplete="off" /> <div class="FormControl-spacingWrapper"> <div data-view-component="true"> <div class="FormControl width-full FormControl--fullWidth"> <label class="sr-only FormControl-label" for="project_id"> Project </label> <div class="FormControl-input-wrap FormControl-input-width--auto"> <div class="form-autocompleter-container projects-autocomplete-with-search-icon"> <opce-project-autocompleter data-default-data="false" data-filters="[{"name":"active","operator":"=","values":["t"]}]" data-open-directly="false" data-focus-directly="false" data-dropdown-position=""bottom"" data-disabled-projects="{"864":"Disabled reason!","876":"Disabled reason!","897":"Disabled reason!","262":"Disabled reason!","80":"Disabled reason!","728":"Disabled reason!","306":"Disabled reason!","729":"Disabled reason!","826":"Disabled reason!","730":"Disabled reason!"}" data-classes=""ng-select--primerized "" data-input-name=""project[id]"" data-label-for-id=""project_id"" data-input-value="null" class="op-angular-component"></opce-project-autocompleter> </div> </div> <div class="FormControl-inlineValidation" id="validation-846fc55c-bc48-45ba-9a17-3547d8eada3f" 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></form>
No notes provided.
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
<% the_form = Class.new(ApplicationForm) do form do |f| f.project_autocompleter( name: :id, label: Project.model_name.human, visually_hide_label: true, autocomplete_options: { with_search_icon: true, openDirectly: false, focusDirectly: false, dropdownPosition: "bottom", disabledProjects: Project.visible.take(10).pluck(:id).index_with { |_id| "Disabled reason!" } } ) end end model = Project.new%><%= primer_form_with( model:, url: "/abc", id: "asdf" ) do |f| render(the_form.new(f)) end %>
No params configured.