can i add submenu on topbar ?

Forum rules
Please note that response time for technical support is within 3-5 business days.
Post Reply
zj0ch
Posts: 8
Joined: 31 Aug 2010, 16:05

25 Oct 2018, 10:16

I want to add submenu on topbar, but i can't found example like it. Babylon can do it ?

mert.sincan
Posts: 5281
Joined: 29 Jun 2013, 12:38

25 Oct 2018, 10:32

Is it into the drop-in panel? Exp; for "Profile", "Settings", "Messages" item etc.

zj0ch
Posts: 8
Joined: 31 Aug 2010, 16:05

25 Oct 2018, 16:40

I want to add submenu in setting and profile, but example not have.
I want to add submenu in submenu on topbar.

thank you!

mert.sincan
Posts: 5281
Joined: 29 Jun 2013, 12:38

01 Nov 2018, 08:30

Babylon Layout doesn't support this feature. Maybe, you can write custom css style and JS codes to support it.

My Test;

Code: Select all

//CSS 
<style>
    .layout-wrapper .layout-topbar .topbar-menu > li > ul li > ul {
        list-style-type: none;
        padding-left: 0px;
        height: 0;
        overflow: hidden;
    }

    .layout-wrapper .layout-topbar .topbar-menu > li > ul li > ul a {
        padding-left: 28px;
    }

    .layout-wrapper .layout-topbar .topbar-menu > li > ul li.active-submenuitem > ul {
        height: auto;
    }

    @media screen and (max-width: 896px) {
        .layout-wrapper .layout-topbar .topbar-menu > li > ul li > ul a {
            padding-left: 44px;
        }
    }
</style>

Code: Select all

// in layout.js
// please add the following code to line 243

     this.topbarLinks.next('ul').find('> li > a').on('click', function(e) {
            var link = $(this), 
            item = link.parent(),
            submenu = item.next();
            
            $this.topbarMenuClick = true;
            
            item.siblings('.active-submenuitem').removeClass('active-submenuitem');
            if(submenu.length) {
                item.toggleClass('active-submenuitem');
            }
            
            if (link.attr('href') === '#') {
                e.preventDefault();
            }
        });

$(document.body).on('click', function () { // line 244
...

Code: Select all

//topbar.xhtml
...
<ul>
    <li>
        <a href="#">
            <i class="fa fa-fw fa-user"></i>
            <span>Profile</span>
        </a>
        <ul> <!-- Please add this tag for submenu -->
            <li>
                <a href="#">
                    <i class="fa fa-fw fa-home"></i>
                    <span>TEST</span>
                </a>
            </li>
        </ul> <!-- End -->
    </li>
    <li>
        <a href="#">
            <i class="fa fa-fw fa-cog"></i>
            <span>Settings</span>
        </a>
    </li>
    <li>
        <a href="#">
            <i class="fa fa-fw fa-envelope-o"></i>
            <span>Messages</span>
        </a>
    </li>
    ...
[code]

Post Reply

Return to “Babylon - PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 7 guests