class UiBibz::Ui::Core::Forms::Buttons::ButtonGroupSplitDropdown
Create a button choice
This element is an extend of UiBibz::Ui::Core::Forms::Buttons::Button
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:
-
type
- Symbol (:checkbox
,:radio
) -
status
- status of element with symbol value: (:primary
,:secondary
,:info
,:warning
,:danger
) -
size
(:xs
,:sm
,:lg
) -
url
- String url -
outline
- Boolean -
state
- Symbol (:active
, +:disabled) -
type
- Symbol (+:block) -
name
- String name of input checkbox -
id
- String id of input checkbox -
input_html_options
- Hash of input html options -
glyph
- Add glyph with name or hash options-
name
- String -
size
- Integer -
type
- Symbol
-
Signatures¶ ↑
UiBibz::Ui::Core::Forms::Buttons::Choice.new(content, options = nil, html_options = nil) UiBibz::Ui::Core::Forms::Buttons::Choice.new(options = nil, html_options = nil) do content end
Examples¶ ↑
UiBibz::Ui::Core::Forms::Buttons::Choice.new('test', state: :active) UiBibz::Ui::Core::Forms::Buttons::Choice.new({id: 'state', input_html_options: { class: 'state'}}, { class: 'lable-class'}) do test end.render
Helper¶ ↑
choice(content, options = {}, html_options = {}) choice(options = {}, html_options = {}) do content end
Private Instance Methods
See UiBibz::Ui::Core::Forms::Buttons::Button.initialize
UiBibz::Ui::Core::Forms::Dropdowns::SplitDropdown#component_html_classes
# File lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb, line 64 def component_html_classes super << 'btn-group' end