Hi,
Been thinking about implementing BreadCrumb component.
My thoughts currently...
Application's base Page implements "PageBeginRenderListener" and
does something like this:
public void pageBeginRender(PageEvent event) {
if (!event.getRequestCycle().isRewinding()) {
String _pageName = event.getPage().getPageName();
getBreadCrumbPath().validateCrumbPath(_pageName,
getPageTitle(), /*** Need ExternalLink's URL here **/);
}
}
BreadCrumbPath is an ASO which holds individual crumbs.
What I want to do is have the breadcrumbs crumbs display an external
link URL which when clicked
a) update the crumbs held in the ASO
b) go to the requested page
This behavior will be implemented in the Application's base Page (again)
as part of
the IExternalPage interface.
Question: I want to hold a page's external link inside of a single crumb
element,
how can I create this (an external URL) from within my Java code?
If somebody already thinks, this will result to nothing - then please
stop me ;-)
-J.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]