Sha256: 8820d70b4ff0d0b8b988d4a52a6cfd3525f7dbc2fa3edd714763197b1d867c8e
Contents?: true
Size: 443 Bytes
Versions: 55
Compression:
Stored size: 443 Bytes
Contents
# 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 end end
Version data entries
55 entries across 55 versions & 2 rubygems