Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9163809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:31:59+00:00 2026-06-17T14:31:59+00:00

I am creating a application which has a global tab bar .Actionbar should have

  • 0

I am creating a application which has a global tab bar .”Actionbar” should have 5 buttons and should be seen on every screen.
Is there any way to place 5 tabs on “ActionBar” at one moment without help of “tabbed menu” ?
And how I can make this tabbed-pane global? because latter in the app I use navigationPane and it replaces tabbedpane. I want the tabbedPane bar to be visible on all screens

UPDATE ::::
I tried sheets but tabs are dissappearing

 import bb.cascades 1.0

TabbedPane {
    showTabsOnActionBar: true
    Tab {

        Page {
            titleBar: TitleBar {
                title: "1"
            }
            attachedObjects: [
                ComponentDefinition {
                    id: mySheet
                    source: "sheets.qml"
                }
            ]
            Button {
                onClicked: {
                    var sheet = mySheet.createObject();
                    sheet.open();
                }
                text: "sheet"
            }
        }
    }
    Tab {
    }
}

and my sheets.qml file

import bb.cascades 1.0

Sheet {
    id: mySheet
    content: Page {
        Container {
            Label {
                text: "Hi then"
            }
            Button {
                text: "close"
                onClicked: {
                    onClicked: mySheet.close()
                }
            }
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T14:32:00+00:00Added an answer on June 17, 2026 at 2:32 pm

    “And how I can make this tabbedpane global? because latter in the app I use navigationPane and it replaces tabbedpane.”

    If I understand your question correctly, you want there to always be a tabbedpane instead of it being replaced by the navigationpane later.

    What you need to to is have your tabbedpane as the main object in your qml. The navigationpane should be inside each tab, so basically 5 tabs means you would have 5 x navigation panes.

    When you need to push a page, push it to the relevant tab’s navigationpane.

    UPDATE:
    Sheets allow you to push a page ontop of the tabbedpane. Here is an example:

    Create a qml file with the root item being a sheet, e.g.

    Sheet {
        content: Page {
            Container {
                ... insert content
            }
        }
    }
    

    Then in your tabbedpane you would do the following:

    inside attachedObjects

    ComponentDefinition {
        id: sheetDefinition
        source: "mypage.qml"
    } 
    

    in your function/onclick/etc:

    var sheet = sheetDefinition.createObject;
    sheet.open();
    

    UPDATE 2:

    To push pages within a tabbedpane do something similar to the following:

    TabbedPane {
        Tab {
            NavigationPane {
                id: tab1Nav
                Page {
    
                }
            } 
        }
    }
    

    Then to push a page use

    tab1Nav.push(page);
    

    Or replace the content of the navigationpane to keep the tabs in place.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a notepad type of application which has the tab functionality. I have
I am creating an application which has a notification icon on the status bar
I am creating application in MVC3. I have a ConferenceController which has a Create()
I'm creating an application which has a home screen that looks like the native
I'm creating an android application, which has a particular screen (layout) with over (120+
I am creating a web application which has a few management screens, where a
I'm creating an application which works on Froyo until Jelly Beans. I have two
I'm creating an android application which should parse a Json from a file or
I have a django application which has one main table/model which references various 'lookup'
I'm creating GUI application which has a few similar elements, so the code is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.