class UiBibz::Ui::Ux::Containers::Components::PanelHeaderTitle

Create a panel header

Attributes

Options

You can add HTML attributes using the html_options. You can pass arguments in options attribute:

Signatures

UiBibz::Ui::Core::Boxes::PanelHeader.new(content, options = nil, html_options = nil)

UiBibz::Ui::Core::Boxes::CarHeader.new(options = nil, html_options = nil) do
  content
end

Examples

UiBibz::Ui::Core::Boxes::PanelHeader.new.render

UiBibz::Ui::Core::Boxes::PanelHeader.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_header_title.rb, line 37
def pre_render
  content_tag :div, @content, html_options
end

Private Instance Methods

component_html_classes() click to toggle source
# File lib/ui_bibz/ui/ux/containers/components/panel_header_title.rb, line 43
def component_html_classes
  'panel-title'
end