[jboss-user] [JBoss Seam] - page navigation issue....
minamti
do-not-reply at jboss.com
Mon Nov 26 21:31:23 EST 2007
This is what I have ....
Clicking on 'hello' navigates to newPage whereas clicking on 'world'
does not navigate to newPage. Any ideas...
Thanks,
M
Detail.xhtml
| <s:decorate id="button" template="layout/edit.xhtml">
| <div class="navBar">
| <h:commandButton value="Hello" action="#{test.hello}" rendered="#{test.renderHello}" view="/test2.xhtml"/>
| <h:commandButton value="World" action="#{test.world}" rendered="#{test.renderWorld}" view="/test2.xhtml"/>
| </div>
| </s:decorate>
|
Test.java
| @Name("test")
| public class Test {
|
| public boolean getRenderHello() {
| return true;
| }
|
| public boolean getRenderWorld() {
| return true;
| }
|
| public void hello() {
| System.out.println("hello");
| }
|
| public void world() {
| System.out.println("world");
| }
| }
|
pages.xml
| <page....>
| <navigation from-action="#{test.hello}">
| <redirect view-id="/newPage.xhtml"/>
| </navigation>
| <navigation from-action="#{test.world}">
| <redirect view-id="/newPage.xhtml"/>
| </navigation>
| </page>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4107922#4107922
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4107922
More information about the jboss-user
mailing list