Hello,
is it possible to handle partial validation of form content? I need 1 or
several items in a forms to be valid at a specific submit, but as it is
only a request for partial change in the form, it is most probable the
rest is not valid / finished. However, i need to keep information in
rest of form even if it's not valid.
Here is how my form must look like:
data1 [.....]
data2 [.....]
data3 [.....]
subdata1.... (read-only)
subdata2.... (read-only)
subdata3.... (read-only)
subdata4 [......] [add-subdata-button]
data4 [.....]
data5 [.....]
[submit]
when i click add-subdata-button, i need subdata4 to be validate, but
textual content of data 1 -> 5 must be kept without any validation
attempt.
when i click submit, data 1->5 must be validated, but content of
subdata4 ignored.
I suppose the JSF framework has something for this, but am not sure what.