You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The input component can now perform data validation through custom rules, but it cannot meet the requirements when data needs to be validated through a query.
I want to use the value from an input component as a parameter to call an API query for existence checking. The result of this API call will determine whether the validation passes.
Since the query is asynchronous, when the API call succeeds and the validation rule expression result changes, the validation rule does not get triggered again. Only when the input value changes, the expression result is recalculated, but at that moment, the expression computes the result based on the previous data validation result.
Describe the solution you'd like
When the result of a custom rule expression changes, it will trigger the custom rule to recalculate.