Re: partial validation of value

2006-07-28 Thread David Delbecq
Thank you for this information. It was not apparent from the documentation online or the example. I did separate my form i different section, each of which is in a subform and it work well now. Andrew Robinson wrote: Yeah I bumped into that as well. All the components you want to have

Re: partial validation of value

2006-07-27 Thread David Delbecq
Hi, thanks for this information, that an interresting component. However, i can not find how to download sandbox extensions. It's not present in ibiblio's maven repository, neither on the apache download pages. Thanks. Conway. Fintan (IT Solutions) wrote: Hi David, It is possible the

Re: partial validation of value

2006-07-27 Thread Cagatay Civici
Hi David,Check out the nightly builds;http://people.apache.org/builds/myfaces/nightly/CagatayOn 7/27/06, David Delbecq [EMAIL PROTECTED] wrote: Hi,thanks for this information, that an interresting component. However, ican not find how to download sandbox extensions.It's not present inibiblio's

Re: partial validation of value

2006-07-27 Thread David Delbecq
Thanks for this suggestion. I tried the subform. However, it does not seem to disable global form validation. I have this hierarchy: - form - some components ... - subform - DocumentEditor, a custom composite element made of: - 2 HtmlInputText - 1 file upload - 1

Re: partial validation of value

2006-07-27 Thread Andrew Robinson
Yeah I bumped into that as well. All the components you want to have validation turned off have to be in a sub form.form subform some components subform other componentsIt would be nice to not have to do that, but I think there are good architectural reasons why this has to be the case. Also I am

RE: partial validation of value

2006-07-26 Thread Julian Ray
Perhaps a good strategy would be to add bindings to all the form elements you need to validate and a hidden form element at the bottom of the page and perform a backing-bean validation on this hidden element. You can validate all the values in the bound form elements at one time and as complicated

Re: partial validation of value

2006-07-26 Thread David Delbecq
Am quite new to jsf and am not sure to understand your suggestion. - what is the hidden form element supposed to refer to? - am using custom composite components, and some of those component behave like extendable arrays, when i do operations like extend/remove on such composite component, i

RE: partial validation of value

2006-07-26 Thread Conway. Fintan \(IT Solutions\)
Hi David, It is possible the s:subform component in Tomahawk Sandbox will do what you require. Regards, Fintan -Original Message- From: David Delbecq [mailto:[EMAIL PROTECTED] Sent: 26 July 2006 11:20 To: MyFaces Discussion Subject: partial validation of value Hello, is it possible