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

  • SEARCH
  • Home
  • 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 4320918
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T08:41:10+00:00 2026-05-21T08:41:10+00:00

How to display Breadcrumb feature in ExtJS designs. Iam using Panel with borderlayout, i

  • 0

How to display Breadcrumb feature in ExtJS designs.

Iam using Panel with borderlayout, i want to design crumb feature on top of panel
please send me some samples…..

Thanks In Advance

  • 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-05-21T08:41:11+00:00Added an answer on May 21, 2026 at 8:41 am

    Two solutions come to my mind.

    1. Use the panel title. You will have to manipulate the title of your panel and create the breadcrumb on it. You will have to create the breadcrumb text, set it to the panel’s title. Here is what you might do:

    Initially, you may set it to have just the text home title: 'Home'. At some point of time you update it using setTitle() method. Here is an example:

    panel.setTitle('Home >> ' + '<a id="levelone" href="#">Level 1</a>');
    

    You need to have a logic to you create the anchor tag and its id. The id is important because, we will use it to associate the action. Lets say I have a function sayHello and I call it when “Level 1” is clicked:

    var sayHello = function(){
        alert('Hello Text');
    }
    

    Associating this function to the user click of the Level 1 is done using events:

    var level1 = Ext.get('levelone');
    level1.on('click', sayHi);
    

    2.Use the tbar. If you don’t plan to make use of the tbar for the said panel, you can make use of it as your breadcrumb holder. In this method, you can add actions, or toolbar items to the toolbar. Here is an example:

    var action = new Ext.Action({
        text: 'Level 1',
        handler: function(){
            Ext.Msg.alert('Action', 'Level 1...');
        }               
    });
    
    var action1 = new Ext.Action({
        xtype: 'tbtext',
        text: 'Level 2',
        handler: function(){
            Ext.Msg.alert('Action', 'Level 2...');
        }               
    });
    

    And in your panel you can have:

    tbar: [
     action,'-',action1,'-',action2
    ]
    

    You will have to change the CSS for the separator to show “>>” or other symbols you plan to use. In this case, you will have to use the Toolbar’s add & remove methods to manipulate the breadcrumb.

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

Sidebar

Related Questions

I am using the SiteMapPath for my breadcrumb. Currently it displays the path I
I display the contents of a table in the database using a ListBox. Each
I am trying to write a breadcrumb navigation by using XSL to transform XML.
I have some text from a breadcrumb which I am using to open menu
I'm using <asp:SiteMapPath ID=SiteMapPath runat=server skiplinktext=skip breadcrumb></asp:SiteMapPath> In a SharePoint environment - is there
I found a javascript breadcrumb trail that will display the home page, what folder
I want to display a list item in a different detail page, not dispform.aspx,
Display tag has the feature to export tyable data in excel or pdf. JQgrid
I display thumbnails in a JPanel. When hovering over such a thumbnail, I want
I want to create a breadcrumb control that has a button at the beginning

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.