Sha256: 7b5b501fcd52a2b5e9872178456ab787ecfbc7c094c7a0bf2c81a4e4a29eb119
Contents?: true
Size: 704 Bytes
Versions: 18
Compression:
Stored size: 704 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:", caption: "Nom nom nom") 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
18 entries across 18 versions & 2 rubygems