xowiki::BootstrapNavbar instproc render (public)

 <instance of xowiki::BootstrapNavbar[i]> render

Defined in packages/xowiki/tcl/bootstrap-procs.tcl

http://getbootstrap.com/components/#navbar

Partial Call Graph (max 5 caller/called nodes):
%3 test_create_folder_with_page create_folder_with_page (test xowf) xowiki::BootstrapNavbar instproc render xowiki::BootstrapNavbar instproc render test_create_folder_with_page->xowiki::BootstrapNavbar instproc render test_create_workflow_with_instance create_workflow_with_instance (test xowf) test_create_workflow_with_instance->xowiki::BootstrapNavbar instproc render html::div html::div xowiki::BootstrapNavbar instproc render->html::div html::nav html::nav xowiki::BootstrapNavbar instproc render->html::nav html::ul html::ul xowiki::BootstrapNavbar instproc render->html::ul

Testcases:
create_folder_with_page, create_workflow_with_instance
Source code:
html::nav  -class [xowiki::CSS classes ${:navbarClass}]  -role "navigation"  -style "background-color: #f8f9fa;" {
      #
      # Render the pull down menus
      #
      html::div -class ${:containerClass} {
        set rightMenuEntries {}
        html::ul -class "nav navbar-nav px-3" {
          foreach entry [:children] {
            if {[$entry istype ::xowiki::BootstrapNavbarDropdownMenu]} {
              $entry render
            } else {
              lappend rightMenuEntries $entry
            }
          }
        }
        if {[llength $rightMenuEntries] > 0} {
          html::ul -class "nav navbar-nav [::xowiki::CSS class navbar-right]" {
            foreach entry $rightMenuEntries {
              $entry render
            }
          }
        }
      }
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: