module Adminterface::Extensions::Inputs::SelectInput
Public Instance Methods
input_html()
click to toggle source
# File lib/adminterface/extensions/inputs/select_input.rb, line 14 def input_html select_html end
input_html_options()
click to toggle source
Calls superclass method
# File lib/adminterface/extensions/inputs/select_input.rb, line 18 def input_html_options opts = options[:input_html] || {} super.merge(class: "form-select #{opts[:class]}".squish) end
to_html()
click to toggle source
# File lib/adminterface/extensions/inputs/select_input.rb, line 8 def to_html input_wrapping do label_html << input_html end end