Breadcrumb
A visual breadcrumb component
Breadcrumbs typically appear horizontally across the top of a web page, often below title bars or headers.
They provide links back to each previous page the user navigated through to get to the current page or—in hierarchical site structures—the parent pages of the current one.
Breadcrumbs provide a trail for the user to follow back to the starting or entry point.
The second version of Lexaden Breadcrumb addon
Sample code
final BreadCrumbExt breadCrumb = new BreadCrumbExt(); breadCrumb.setShowAnimationSpeed(Breadcrumb.AnimSpeed.SLOW); breadCrumb.setHideAnimationSpeed(Breadcrumb.AnimSpeed.SLOW); breadCrumb.setUseDefaultClickBehaviour(false); breadCrumb.addLink(new Button()); breadCrumb.setLinkEnabled(false, 0); breadCrumb.setHeight(18, Sizeable.Unit.PIXELS); .... breadCrumb.select(0); final int size = breadcrumbList.size(); for (int i = 0, breadcrumbListSize = breadcrumbList.size(); i < breadcrumbListSize; i++) { State state = breadcrumbList.get(i); breadCrumb.addLink(new Button(getName(state), new BreadcrumbClickListener("cancel", eventProcessor, size - (i + 1)))); }
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Migrated to Vaadin 7.5.5 packages renamed from com.lexaden.breadcrumb to com.vaadin.breadcrumb
- Released
- 2016-02-03
- Maturity
- STABLE
- License
- Apache License 2.0
Compatibility
- Framework
- Vaadin 7.5+
- Browser
- Browser Independent
Breadcrumb - Vaadin Add-on Directory
A visual breadcrumb componentBreadcrumb version 2.0.0
Migrated to Vaadin 7.5.5
packages renamed from com.lexaden.breadcrumb to com.vaadin.breadcrumb