Definition of the model for keeping and performing data of your forms.
const abstractFormModel = new UIKernel.AbstractModels.Form(); async getData(string[] fields)Return all requested fields.
async submit(Object changes)Process form data.
string[] getValidationDependency(string[] fields)Return fields that need to be sent additionally to validate a field. This method is required for creating group validators.
async isValidRecord(Object record)Validate records
Form model can be easily obtained from Grid model. More..