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

ASPxClientTextEdit.TextChanged Event

Fires on the client side when the editor’s text is changed and focus moves out of the editor by end-user interactions.

Declaration

TextChanged: ASPxClientEvent<ASPxClientProcessingModeEventHandler<ASPxClientTextEdit>>

Event Data

The TextChanged event's data class is ASPxClientProcessingModeEventArgs. The following properties provide information specific to this event:

Property Description
processOnServer Specifies whether or not to process the event on the server.

Remarks

The TextChanged event is raised on the client side when the content of the text editor changes. Handle this event to respond to an end-user changing the editor’s text.

Important

By design, the TextChanged event is raised only in response to end-user actions.

Note

Some controls have an internal mechanism for accepting/rejecting entered values. This allows you to enter any values, in order to use them during filtering, but it accepts only those text values that are available for them. The TextChanged event isn’t raised on each key press, but when an entered value has been accepted by the control. To get a confirmation about each key press event, handle the ASPxClientTextEdit.KeyUp event.

See Also