[jboss-user] [JBoss Seam] - FacesMessages API change might cause unexpected form validat

flashguru do-not-reply at jboss.com
Sun Feb 25 23:35:41 EST 2007


I am not sure if this is something worth mentioning.
But the latest API changes to the FacesMessages might cause unexpected form validation behavior for people who are migrating from 1.1.6.

With 1.1.6, I used the method

FacesMessages.add(String id, String messageTemplate, Object... params) 

to associate a validation error message with a UI component.

Now with 1.1.7 the same method will map to

FacesMessages.add(String messageTemplate, Object... params) 

which will add the component id string as a global message and therefore prevents the validation system from detecting that the UI component has a validation error.

The solution, of course, is to use

addToControl(String id, String messageTemplate, Object... params)

instead.


View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4022210#4022210

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4022210



More information about the jboss-user mailing list