Skip to main content
Version: 3.5

Validation

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Adds a common validation system to any Control.

public class Validation : Component, IExtenderProvider

You can drop this extender on any design surface to add validation rules to any control at design time using the added ValidationRules property. You can also use this component at runtime and invoke the SetValidationRules method directly. Validation rules are executed in the order they are added to the array. When a validation rule fails validation, the next rules are NOT executed and the Cancel property of the control's Validating event is set to true.

Constructors

Instance memberValidation()

Initializes a new instance of the Validation class.

Instance memberValidation(container)

Initializes a new instance of the Validation class attached to a IContainer implementation.

NameTypeDescription
containerIContainerAn IContainer that represents the container of the Validation extender.

Properties

Instance memberContainerControl

ContainerControl: Returns or sets the container ContainerControlthat provides the BindingContext for binding to the IDataErrorInfo interface implemented by a DataSource. (Default: null)

Instance memberDataMember

String: Returns or sets the list within a data source to monitor for errors. (Default: "")

Instance memberDataSource

Object: Returns or sets the data source that the Validation extender monitors for errors. (Default: null)

Instance memberErrorProvider

IErrorProvider: Associates an IErrorProvider to the Validation extender."/> (Default: null)

When this property is null (default), the validation extender sets the InvalidMessage property of the control being validated to the corresponding InvalidMessage when a validation rule fails. Otherwise it invokes the SetError method passing the control that failed validation and the corresponding InvalidMessage string. You may use an instance of ErrorProvider to display error icons and messages. But you can also implement the IErrorProvider interface in a custom class and manage errors however required by the application. A third option is to assign a Label (or any Control that implements IErrorProvider) to the ErrorProvider property to let the validation extender set the text property to the corresponding InvalidMessage string.

info

The Label (or any Control that implements IErrorProvider) is automatically hidden (Visible is set to false) when there is no error message to display.

Instance memberTag

Object: Returns or sets the object that contains programmer-supplied data associated with the Validation extender. (Default: null)

Methods

Instance memberBindToDataAndErrors(dataSource, dataMember)

Sets the DataSource and DataMember properties.

ParameterTypeDescription
dataSourceObjectA data set based on the IList interface to be monitored for errors.
dataMemberStringA collection within the dataSource to monitor for errors.

Instance memberCanExtend(extendee)

Returns a value indicating whether a control can be extended.

ParameterTypeDescription
extendeeObjectThe control to be extended.

Returns: Boolean. true if the control can be extended; otherwise, false.

Instance memberClear()

Removes all validation rules.

Instance memberGetValidationRules(control)

Returns the collection of ValidationRule associated with the specified control .

ParameterTypeDescription
controlControlControl associated with the validation rules to retrieve.

Returns: ValidationRule[]. Array of the validation rules associated to the control .

Instance memberOnValidated(e)

Fires the Validated event.

ParameterTypeDescription
eValidationEventArgs

Instance memberOnValidating(e)

Fires the Validating event.

ParameterTypeDescription
eValidationEventArgs

Instance memberResetValidationRules(control)

Removes all the validation rules from the control .

ParameterTypeDescription
controlControlControl to remove from the Validation extender.

Instance memberSetValidationRules(control, rules)

Sets the list of validation rules associated with the specified control .

ParameterTypeDescription
controlControlControl associated with the validation rules.
rulesValidationRule[]List of validation rules to enforce on the specified control .

Instance memberUpdateBinding()

Updated the bindings.

Events

Instance memberValidated

ValidationEventHandler Fired after any control associated to the Validation extender has been successfully validated.

You can add an handler to this event and handle the successful validation of all the controls that have a set of validation rules in one place.

Instance memberValidating

ValidationEventHandler Fired when the any control associated to the Validation extender is being validated.

You can add an handler to this event and handle the validation of all the controls that have a set of validation rules in one place.