Sha256: e7d88b2d30d4ab506d3524934028a0807b6de325edaa120fb7b77dc54ab33510

Contents?: true

Size: 1.32 KB

Versions: 20

Compression:

Stored size: 1.32 KB

Contents

module UiBibz::Ui::Core::Forms::Choices

  # Create a SurroundField
  #
  # This element is an extend of UiBibz::Ui::Core::Component.
  # Source : http://www.bootstrap-switch.org/documentation-2.html
  # ==== Attributes
  #
  # * +content+ - Content of element
  # * +options+ - Options of element
  # * +html_options+ - Html Options of element
  #
  # ==== Options
  #
  # You can add HTML attributes using the +html_options+.
  # You can pass arguments in options attribute:
  # * +state+ - Symbol
  #   (+:active+, +:disabled+)
  # * +inline+ - Boolean
  # * +checked+ - Boolean
  # * +action+ - String Stimulus Option
  # * +label+ - String
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Forms::SwithField.new(content, options = {}, html_options = {}).render
  #
  #   UiBibz::Ui::Core::Forms::SwithField.new(options = {}, html_options = {}) do
  #     content
  #   end.render
  #
  # ==== Examples
  #
  #   ui_switch_field 'name', checked: true
  #
  # ==== Helper
  #
  #   ui_switch_field(options = {}, html_options = {}) do
  #    # content
  #   end
  #
  class SwitchField < UiBibz::Ui::Core::Forms::Choices::CheckboxField

    def initialize content = nil, options = nil, html_options = nil, &block
      super
    end

    private

    def component_html_classes
      ["custom-control", "custom-switch", inline]
    end

  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
ui_bibz-2.4.0 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.15 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.14 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.13 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.12 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.11 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.10 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.9 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.8 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.7 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.6 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.5 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.4 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.3 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.2 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.1 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.3.0 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.2.2 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.2.1 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-2.2.0 lib/ui_bibz/ui/core/forms/choices/switch_field.rb