[JBoss-user] [JBoss Seam] - Re: SEAM configuration problem

2006-03-22 Thread dwayneb
An other option (when you can't overwrite Manifest like me) is to add the following code into application.xml : | | jboss-seam-1.0-beta2.jar | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931879#3931879 Reply to the post : http://www.

[JBoss-user] [JBoss Seam] - Re: Nullpointer Exception while accessing Seam Component

2006-06-07 Thread dwayneb
line 191 is a comment in Pageflow 1.0.0.CR3!!! I'd got a similar problem. The displaing exception isn't the root one. In my case, the cause was that the PageflowProcessDefinition wasn't define (=> NPE). So check if the pageflow is define : check in web.xml : | | org.jboss.seam.core.jb

[JBoss-user] [JBoss Seam] - Re: pageflow problems

2006-06-08 Thread dwayneb
Hi, >From my understand, the pageflow isn't started (no call to begin from an >action or link beetween the jsp and the start-page. I suggest you to set the view-id attribute of the node: | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949976#3949976 R

[JBoss-user] [JBoss Seam] - Re: pageflow problems

2006-06-08 Thread dwayneb
You're right (Gavin) about begin of the pageflow, In this case, not set view-id on will produce a exception when transaction "tostart" form ShipTo will run, because no view are define for PurchaseStartPage. An other suggestion : don't use the page/state name to define next/prev button (becau

[JBoss-user] [JBoss Seam] - Re: pageflow problems

2006-06-09 Thread dwayneb
About your problem : My brain was off-line yesterday when I replied. The error in your jsp page is that : your tag in page two,... aren't inside a . I'm suprised you didn't have exception. I use facalets, when when it found a commandButton or commandLink outside form, it raise an error. About

[JBoss-user] [JBoss Seam] - Re: pageflow problems

2006-06-09 Thread dwayneb
I forgot to add the view-id of start-page (need to allow back from ShipTo: | | | | | | | | | | | | | | | | | | | | | | | | |

[JBoss-user] [JBoss Seam] - Re: Newbie: Dynamic form fields

2006-06-21 Thread dwayneb
If you use combobox or list of radio, you could simply declare tag with value get from Bean : | | | | | @SuppressWarnings("serial") | @Stateless | @Name("sectorList") | public class SectorList implements ItemList, Serializable{ | | @PersistenceContext | pu