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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Two solutions come to my mind.
Initially, you may set it to have just the text home
title: 'Home'. At some point of time you update it usingsetTitle()method. Here is an example: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:
Associating this function to the user click of the Level 1 is done using events:
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:
And in your panel you can have:
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&removemethods to manipulate the breadcrumb.