aspose file tools
The moose likes JSF and the fly likes Issue while using the trinidad dialog in xhtml page Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Issue while using the trinidad dialog in xhtml page" Watch "Issue while using the trinidad dialog in xhtml page" New topic
Author

Issue while using the trinidad dialog in xhtml page

Bhoopal Reddy
Greenhorn

Joined: Feb 19, 2010
Posts: 1
Hi,

I am facing the problem with trinidad dialogs in xhtml. I am doing following things.


1) In text.xhtml i have written the following code

<tr:commandLink text="Show More Information"
partialSubmit="true"
useWindow="true"
action="dialog:showDetail"/>

2) following navigation rule wrote inside the faces-config.xml

<navigation-rule>
<from-view-id>/*</from-view-id>

<navigation-case>
<from-outcome>dialog:showDetail</from-outcome>
<to-view-id>/showDetail.xhtml</to-view-id>
</navigation-case>
</navigation-rule>

3) following code wrote in showDetail.xhtml

<tr: outputText value="Hi from showDetail.xhtml"/>

These are the changes we made but unable to get the dialog window.

I followed this reference link http://myfaces.apache.org/trinidad/devguide/dialogs.html

I tried same scenario with jspx instead of xhtml. It is working fine . Please guide me how to resolve the same problem with the xhtml

Thanks in advance

Regards,
Bhoopal

 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Issue while using the trinidad dialog in xhtml page
 
Similar Threads
Problem with Trinidad's Dialog box.
Error after navigation
navigation problem in jsf
Navigation Problem
JSF action doesn't call bean method