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

ASPxClientTextEdit.UserInput Event

Fires on the client each time a user changes an editor’s input value.

Declaration

UserInput: ASPxClientEvent<ASPxClientEventHandler<ASPxClientTextEdit>>

Event Data

The UserInput event's data class is ASPxClientEventArgs.

Remarks

Note

The UserInput event is raised only in response to end-user actions.

The GetText and the GetValue methods can return an incorrect (empty or previous) value in the client-side UserInput, KeyDown, KeyPress, and KeyUp event handlers when you apply a format, mask, or null text settings to a text editor.

In this case, obtain the editor’s text from the editor’s input element:

function OnUserInput(s, e) {  
    var currentText = s.GetInputElement().value;  
}

For more information refer to the following Support Center ticket: ticket.

See Also