I have a selectOneChoice with autoSubmit=true and immediate=true to skip validation, if the selectOneChoice is set to some value I want to remove the required attribute from an inputText, so the inputText will have partialTrigger the id of the selectOneChoice, but when I change the value from the selectOneChoice (and the change is submitted) the required validation is still triggered just for the component which needs to be updated (because of the presence of the partialTriggers) the other required components doesn't trigger its validation.
Any workarounds ?
| |||
|
feedback
|
|
You need to change the required indicator in a valueChangeListener. This will happen before the model is updated. For example, given this JSF fragment.
And this listener, you get the behavior you describe.
| |||
|
feedback
|
|
Can you post the EL expression for the required attribute of your inputText?
| |||
|
feedback
|
requiredattribute? E.g.required="#{not empty param['foo:bar']}". – BalusC Jul 18 '11 at 6:29