Re: Good way to remove validation globally from a page or panel

2011-03-05 Thread Martin Grigorov
When you are in View mode then either your components are not form components (e.g. input is replaced with label/span/...) or as you said they are disabled. Form submit will not send name/value pair for disabled form elements. I think the first approach is better regarding user experience. See

RE: Good way to remove validation globally from a page or panel

2011-03-05 Thread Brown, Berlin [GCG-PFS]
I should have clarified. Yea, if you have input fields with a dozen or so fields and you have 50% disabled. But you are using the AbstractFormValidator validate() { get(field1).getInput; get(field2).getInput ... And doing validation checks, I guess this isn't a good approach. I have to keep the