[jboss-user] [JBoss Seam] - Re: Pageflow executed before the model values are applied
hazlorealidad
do-not-reply at jboss.com
Wed Sep 13 15:23:08 EDT 2006
Disable htm didnt work either
Using vi to replace less thans and greater thans with the character entities
<?xml version="1.0"?>
<pageflow-definition name="documentRegisterEntry">
<start-page name="type" view-id="/documentOrRegister.xhtml">
<redirect/>
<transition name="next" to="checkType" />
</start-page>
<decision name="checkType" expression="#{documentRegister.type}">
<transition name="document" to="document"/>
<transition name="register" to="register">
</transition>
</decision>
<page name="register" view-id="/register.xhtml">
<redirect/>
<transition name="prev" to="type"/>
<transition name="next" to="documents"/>
</page>
<page name="document" view-id="/document.xhtml">
<redirect/>
<transition name="prev" to="type"/>
<transition name="next" to="documents">
<action expression="#{documentRegister.save}"/>
</transition>
</page>
<page name="documents" view-id="/documents.xhtml">
<redirect/>
<transition name="prev" to="document"/>
<transition name="next" to="complete">
</transition>
</page>
<page name="complete" view-id="/new_complete.xhtml">
<redirect/>
<end-conversation/>
</page>
</pageflow-definition>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971359#3971359
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971359
More information about the jboss-user
mailing list