Sha256: e9c982c1c74ebd07efb3bbc7aefb0d90ec23c10c3ac57cfb3c545c8a73761ab2
Contents?: true
Size: 644 Bytes
Versions: 12
Compression:
Stored size: 644 Bytes
Contents
= form_tag do = label_tag 'text_control', 'Text control' = text_field_tag 'text_control', 'Text control value' = label_tag 'select_control', 'Select control' = select_tag 'select_control', options_for_select([['Label 1', 'value1'], ['Label 2', 'value2'], ['Label 3', 'value3']], 'value2') = label_tag 'select_control_without_selection', 'Select control without selection' = select_tag 'select_control_without_selection', options_for_select([['Label 1', 'value1'], ['Label 2', 'value2'], ['Label 3', 'value3']]) = label_tag 'textarea_control', 'Textarea control' = text_area_tag 'textarea_control', 'Textarea control value'
Version data entries
12 entries across 12 versions & 1 rubygems