07-30-2007 06:58 AM
<config>
<dialogs>
<dialog name="showNotificationDetails" page="/jsp/extension/spaces/notification-details.jsp"
managed-bean="NotificationDialog"
icon="/images/icons/details_large.gif" title-id="notification_details"
description-id="notification_details_description"/>
<dialog name="showNotificationSentView" page="/jsp/extension/spaces/notification-sent.jsp"
managed-bean="NotificationDialog"
title-id="notification_sent"
description-id="notification_sent_description"/>
</dialogs>
</config>
…
<navigation-case>
<from-outcome>notification_sent</from-outcome>
<to-view-id>/jsp/extension/spaces/notification-sent.jsp</to-view-id>
</navigation-case>
…
08-01-2007 03:53 AM
08-04-2007 11:08 AM
The <navigation-case> configuration is only meant for 'full' JSP pages, it is not designed to work with dialogs.
To get the full UI you will need to copy an existing 'full' JSP, browse.jsp or document-details.jsp are 2 that spring to mind, copy them and replace the body of the page with your UI.
However, I suspect what you are trying to achieve is possible another way. If you just want to open the "showNotificationSentView" dialog from the "showNotificationDetails" just return an outcome of "dialog:showNotificationSentView" from the finishImpl() method of your details dialog.
You shouldn't need to use the <navigation-case> configuration at all.
08-26-2008 05:08 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.