In JSF, is it possible to solve the following validation / updating scenario using the validation framework of JSF (aka validators, immediate, required, etc.)?
+-- Form ----------------------------------------------------+
| |
| Field A: |____________|v| |
| Field B: |____________|v| |
| Field C: |____________|v| Button: [Update C using A and B] |
| Field D: |____________|v| Button: [Update D using B and C] |
| |
| More Fields: ... |
| |
| Button : [Submit All] |
+------------------------------------------------------------+
Where all fields are drop downs and where pressing the [Update C] button would only cause A, B and C to validate but not the rest, pressing the [Update D] button would only cause fields B, C and D to validate and pressing [Submit All] button would cause all fields to validate.