Hi,
When validating your forms, documented approach states to you use
Validate( DataSource, Column, DataCardValue_123)
Does the data source object is stored locally inside my app instance - or does Validate calls the source (datasource) to validate with?
My question is about performance optimization during validations, I would like to avoid multiple calls due to multiple validations. The way Validate arguments are written suggest to me it might be calling for pattern to the source - I would like to avoid that especially with forms with dozens of fields to be validated.
Hypothetically, would some kind of alternative approach be possible e.g Validate(formBeingUsed, ThisItem.FormAttribute, DataCardValue_123)
Kind regards,