class UiBibz::Ui::Ux::Containers::Components::PanelTabGroup
Create a card body
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:
Signatures¶ ↑
UiBibz::Ui::Core::Boxes::PanelBody.new(content, options = nil, html_options = nil) UiBibz::Ui::Core::Boxes::PanelBody.new(options = nil, html_options = nil) do content end
Examples¶ ↑
UiBibz::Ui::Core::Boxes::PanelBody.new.render UiBibz::Ui::Core::Boxes::PanelBody.new do 'Exemple' end.render
Private Instance Methods
component_html_classes()
click to toggle source
Calls superclass method
UiBibz::Ui::Core::Navigations::TabGroup#component_html_classes
# File lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb, line 36 def component_html_classes super << 'panel-header-tabs' end