Jedi Master Spooky
Jedi Master Spooky

Reputation: 5809

How to force ADf Validation in all fields even when they did not change

I want to have a button that fires all validation in a ADF page. I need to evaluate all of them, even if the field has not changed its value.

Upvotes: 0

Views: 1835

Answers (1)

Joe
Joe

Reputation: 3347

  1. Expose a method on the Application Module that calls validate() on the ViewObject Row. Docs here.
  2. Call updateValuesFromRow on the DCIteratorBinding. Though i have not tried this. At least it's a start.

Upvotes: 1

Related Questions