class UiBibz::Ui::Ux::Containers::Components::PanelFooter
Create a panel footer
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::PanelFooter.new(content, options = nil, html_options = nil) UiBibz::Ui::Core::Boxes::PanelFooter.new(options = nil, html_options = nil) do content end
Examples¶ ↑
UiBibz::Ui::Core::Boxes::PanelFooter.new.render UiBibz::Ui::Core::Boxes::PanelFooter.new do 'Exemple' end.render
Public Instance Methods
pre_render()
click to toggle source
Render html tag
# File lib/ui_bibz/ui/ux/containers/components/panel_footer.rb, line 38 def pre_render content_tag :div, glyph_and_content_html, html_options end
Private Instance Methods
component_html_classes()
click to toggle source
Calls superclass method
UiBibz::Ui::Core::Component#component_html_classes
# File lib/ui_bibz/ui/ux/containers/components/panel_footer.rb, line 44 def component_html_classes super << ['panel-footer'] end