[EMAIL PROTECTED] wrote: [...]
The problem is the updateActionListener doesen't execute when immediate = true. but of course it does when immediate = false.
Is this as designed? It would be nice if the updateActionListener would execute, so I could pass by the validator ins this case....
AFAIK it is "by design", when immediate=true you can perform various actions _before_ validating and commiting changes to backing model. Changed values are still available and you can get them directly from UI controls. (if you would like to do it then you'll likely end with two backing beans -- model bean and presentation layer's immediate actions bean). Of course some other method to pass by validators would be nice ;-) but specs doesn't cover this case. (personally I run rather seldom in situation that I must ommit validators).
Regards, a.
