New to Telerik Document ProcessingStart a free 30-day trial

JavaScript hooks for form-field events to validate, format, and react to user input.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.Actions

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public class FormFieldActionCollection

Inheritance: objectFormFieldActionCollection

Methods

Returns a value indicating whether this instance is equal to a specified object.

C#
public override bool Equals(object obj)
Parameters:objobject

An object to compare with this instance.

Returns:

bool

true if obj equals the value of this instance; otherwise, false.

Overrides: object.Equals(object)

Returns the hash code for this instance.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current object.

Overrides: object.GetHashCode()

Properties

Gets or sets the script used to recalculate this field when dependent fields change.

C#
public JavaScriptAction Calculate { get; set; }

Gets or sets the script run before the field formats its value for display.

C#
public JavaScriptAction Format { get; set; }

Gets or sets the script invoked on keystrokes or selection changes, influencing immediate input behavior.

C#
public JavaScriptAction Keystroke { get; set; }

Gets or sets the script run when the field's value changes to validate input.

C#
public JavaScriptAction Validate { get; set; }