Sha256: aa752d8958be0a7d30c6c3bcdf94b261db8c40b5b2f30bb2536572b99687d265
Contents?: true
Size: 988 Bytes
Versions: 18
Compression:
Stored size: 988 Bytes
Contents
<% custom_width_form = Class.new(ApplicationForm) do form do |f| f.text_field( name: :ultimate_answer, label: "Ultimate answer", required: true, caption: "The answer to life, the universe, and everything", input_width: :medium ) f.select_list( name: "cities", label: "Cool cities", caption: "Select your favorite!", include_blank: true, input_width: :small ) 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 f.text_field( name: :lots_of_text, label: "Lots of text", required: true, caption: "What else do you need?", input_width: :small ) end end %> <%= primer_form_with(url: "/foo") do |f| %> <%= render(custom_width_form.new(f)) %> <% end %>
Version data entries
18 entries across 18 versions & 1 rubygems