Sha256: 2c107f29d3593d66560d8f54904b4da6308359eac4e4599095d15b8a91b4f8d8
Contents?: true
Size: 680 Bytes
Versions: 143
Compression:
Stored size: 680 Bytes
Contents
# frozen_string_literal: true # :nodoc: class CheckBoxGroupForm < ApplicationForm form do |check_form| check_form.check_box_group(label: "I like to eat, eat, eat:") do |check_group| check_group.check_box( name: "long_a", label: "Ey-ples and ba-naynays", caption: 'Long "A" sound' ) check_group.check_box( name: "long_i", label: "Eye-ples and ba-nainais", caption: 'Long "I" sound' ) check_group.check_box( name: "long_o", value: "long_o", unchecked_value: "not_long_o", label: "Oh-ples and ba-nonos", caption: 'Long "O" sound' ) end end end
Version data entries
143 entries across 143 versions & 3 rubygems