module UiBibz::Helpers::Ui::Core::NavigationsHelper
Public Instance Methods
ui_link(content = nil, options = nil, html_options = nil, &block)
click to toggle source
Link Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 48 def ui_link(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Navigations::Link.new(content, options, html_options, &block).render end
ui_pagination(content = nil, options = nil, html_options = nil, &block)
click to toggle source
Pagination Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 32 def ui_pagination(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Navigations::Pagination.new(content, options, html_options).tap(&block).render end
ui_tab_group(content = nil, options = nil, html_options = nil, &block)
click to toggle source
TabGroup Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 16 def ui_tab_group(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Navigations::TabGroup.new(content, options, html_options).tap(&block).render end
ui_toolbar(content = nil, options = nil, html_options = nil, &block)
click to toggle source
Toolbar Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/navigations_helper.rb, line 40 def ui_toolbar(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Navigations::Toolbar.new(content, options, html_options).tap(&block).render end