Skip to main content
A newer version of this page is available. .
Tab

SpinEditPropertiesBase.ValueChangedDelay Property

Gets or sets the time interval between the time when an end-user starts changing the editor’s value, and the client ASPxClientSpinEdit.NumberChanged and ASPxClientEdit.ValueChanged events are raised.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(0)]
public int ValueChangedDelay { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that specifies the delay, in milliseconds.

Remarks

Use the ValueChangedDelay property to specify the delay before the client ASPxClientSpinEdit.NumberChanged and ASPxClientEdit.ValueChanged events are raised, in response to an end-user changing an edit value (by clicking and holding down the editor’s spin button or by scrolling the mouse wheel while the editor has focus).

Note that if the editor’s ASPxEdit.AutoPostBack property is set to true, the server ASPxSpinEdit.NumberChanged and ASPxEdit.ValueChanged events will be generated after the client ASPxClientSpinEdit.NumberChanged and ASPxClientEdit.ValueChanged events, if server-side processing is not canceled within client event handlers.

Note

The ValueChangedDelay property synchronizes its value with the editor’s ASPxSpinEditBase.ValueChangedDelay property.

See Also