Interface TJSDataFieldValidationContext

Additional context describing the origin of a DataField validation failure.

interface TJSDataFieldValidationContext {
    source: "sync" | "user";
}
Index
source: "sync" | "user"

Source of the validation failure.

  • 'user' indicates validation failed while processing user input.
  • 'sync' indicates validation failed while synchronizing the component with the current store value.