Hi All,
Jdeveloper version: 12c stack- (i hope the behavior should be same in 11g as well)
I have created a af:table with editable records in them. And there is a Start Date with minValue set to current date (value is fetched from backing bean)
<af:inputDate value="#{bindings.StartDate.inputValue}" required="#{bindings.StartDate.hints.mandatory}"
columns="#{bindings.StartDate.hints.displayWidth}"
shortDesc="#{bindings.StartDate.hints.tooltip}" id="id1"
minValue="#{pageFlowScope.BackingBean.currentSysDate}" >
Example:
| Name | Value | Start Date | End Date |
|---|
| Parameter 1 | 10 | 10-03-1999 | 10-06-2050 |
| Parameter 2 | 20 | 10-05-2014 | 10-06-2050 |
Parameter 1 is an old record
Parameter 2 is a new record
Problem:
When submitting the changes with the commit button ADF tries to validate both Parameter 1 and Parameter 2 for the Start Date.
And it seems to be happening in the client side java script.
I was expecting that it would only validate the new records or changed records.
Question:
Is there any way I can force the ADF to do the validation only on the changed rows and new rows?
Thanks,
Pras