Angular Validator Events

This section describes events fired by this widget.

See Also

disposing

Raised when the widget is removed from the DOM using the remove(), empty(), or html() jQuery methods only.

Type:

Event

Function parameters:
e:

Object

Information about the event.

Object structure:
Name Type Description
component

Object

The widget instance.

element

HTMLElement | jQuery

The widget's container. It is an HTML Element or a jQuery Element when you use jQuery.

model

Object

The model data. Available only if you use Knockout.

See Also

initialized

Raised only once, after the widget is initialized.

Type:

Event

Function parameters:
e:

Object

Information about the event.

Object structure:
Name Type Description
component

Object

The widget's instance.

element

HTMLElement | jQuery

The widget's container. It is an HTML Element or a jQuery Element when you use jQuery.

Main article: onInitialized

See Also

optionChanged

Raised after a widget option is changed.

Type:

Event

Function parameters:
e:

Object

Information about the event.

Object structure:
Name Type Description
name

String

The option's short name.

model

Object

The model data. Available only if you use Knockout.

element

HTMLElement | jQuery

The widget's container. It is an HTML Element or a jQuery Element when you use jQuery.

component

Object

The widget's instance.

fullName

String

The option's full name.

value any

The option's new value.

See Also

validated

Fires after an editor value is validated against the specified validation rules.

Type:

Event

Function parameters:
validatedInfo:

Object

Information about the event.

Object structure:
Name Type Description
name

String

The value of the name option.

isValid

Boolean

Indicates whether all the rules checked for the value are satisfied.

value

Object

The validated value.

validationRules

Array<Object>

An array of the validation rules specified for the current dxValidator object.

brokenRule

Object

The object representing the first broken rule in the list of the specified validation rules.

Instead, you can use the onValidated option to handle the event.

See Also