Lexaden 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.
Lexaden Breadcrumb is designed for both Vaadin 6.8.5+ and 7+
Forum is temporally unavailable, please contact us by email to contact@lexaden.com
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
- Released
- 2013-01-14
- Maturity
- STABLE
- License
- Apache License 2.0
Compatibility
- Framework
- Vaadin 6.8+
- Vaadin 7.0 in 1.7.0
- Browser
- Browser Independent
Lexaden Breadcrumb - Vaadin Add-on Directory
A visual breadcrumb componentSampler Demo
Source Code
Youtube Video
Lexaden Breadcrumb version 1.6.0
null
Lexaden Breadcrumb version 1.7.0
null
Lexaden Breadcrumb version 1.7.1
Corrupted jar file was uploaded for Vaadin 7 breadcrumb
Now it's supposed to be fine
Lexaden Breadcrumb version 1.7.2
Updated to Vaadin 7.0.0
Lexaden Breadcrumb version 1.7.3
Renamed css file to avoid conflicts with other add-ons