Sha256: c42e25e5286c42419649e7747e63f1b09e50f8a2e8dfc30ed65bd17ab90db0fc
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
module LatoView class Input::Checkbox::Cell < Cell @@widths = VIEW_INPUTWIDTH attr_accessor :name, :placeholder, :value, :label, :width, :required, :disabled, :custom_class def initialize(name: 'input', placeholder: '', value: '', label: '', width: 'large', required: false, disabled: false) # save params @name = name @placeholder = placeholder @value = value @label = label @width = width @required = required @disabled = disabled # check params check_params end def show render "show.html" end # return required string to input protected def required_data_input return "data-input='required'" if @required end # return disabled string to input protected def disabled_data_input return "disabled='disabled'" if @disabled end # return checked string to input protected def checked_data_input return "checked" if @value end # check params private def check_params raise 'Input Cells: width has not a correct value' unless @@widths.include? width end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lato_view-1.1.4 | app/cells/lato_view/input/checkbox/cell.rb |
lato_view-1.1.3 | app/cells/lato_view/input/checkbox/cell.rb |