Sha256: ba80cd285ee4494d6a534e19d29b7675fdacfb04c957ebf272ee15812255a47e
Contents?: true
Size: 638 Bytes
Versions: 1124
Compression:
Stored size: 638 Bytes
Contents
# frozen_string_literal: true module Playbook module Forms class Builder def select(name, choices = nil, options = {}, html_options = {}, props: {}, &block) props[:label] = @template.label(@object_name, name) if props[:label] == true options[:skip_default_ids] = false unless options.key?(:skip_default_ids) options[:prompt] = props[:blank_selection] || "" html_options[:required] = "required" if props[:required] input = super(name, choices, options, html_options, &block) @template.pb_rails("select", props: props) do input end end end end end
Version data entries
1,124 entries across 1,124 versions & 1 rubygems