[jboss-user] [JBoss Seam] - Re: SeamSelectItems - Not selecting Item Throws Exception

2006-11-06 Thread petemuir
If a error occurs, yes. For example, when using MyFaces, look in javax.faces.Messages{_xx}.properties for a list of messages it outputs. You can just override those in your messages.properties (assuming you have it set up as the application message bundle in faces-config.xml |messages

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - Not selecting Item Throws Exception

2006-11-04 Thread johnurban
Yes. That fixed it. Is there a way I can post my own message next to the dropdown so that the user does not have to guess what Validation Error means? Thank you for your help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983268#3983268 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - Not selecting Item Throws Exception

2006-11-04 Thread petemuir
Hopefully a simple one: You've used a hibernate validation property specifying that person.room is not null. Unfortunately Seam's s:validate tags don't catch this (see the SeamProblemsFAQ) so you have to specify this is the JSF as well with a required="true" on the JSF tag. View the original