Class Form_Controls
Inherited Members
Namespace: DataWeb.Data.Controls
Assembly: DataWeb.Core.dll
Syntax
public class Form_Controls : ListEditor
Constructors
Form_Controls(Form, IServiceProvider)
Declaration
public Form_Controls(Form form, IServiceProvider serviceProvider)
Parameters
| Type | Name | Description |
|---|---|---|
| Form | form | |
| IServiceProvider | serviceProvider |
Methods
ValidateAsync(object, List<ProvidedValue>, Dictionary<string, object>, IUser, string, NavigationContext, CancellationToken)
Validates the control asynchronously.
Declaration
public override Task<List<ValidationError>> ValidateAsync(object value, List<Form.ProvidedValue> providedValues, Dictionary<string, object> sectionData, IUser user, string itemId = null, NavigationContext navigationContext = null, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| object | value | The value of the control to validate. |
| List<Form.ProvidedValue> | providedValues | The provided Form.ProvidedValue values. |
| Dictionary<string, object> | sectionData | The section data. |
| IUser | user | The IUser that is requesting the validation. |
| string | itemId | The Id of the item that the control is associated with. |
| NavigationContext | navigationContext | The NavigationContext of the form. |
| CancellationToken | cancellationToken |
Returns
| Type | Description |
|---|---|
| Task<List<ValidationError>> | The validation errors, if any. |