CLONED FROM ASPxTextBox - Value is always null when text is pasted into the editor
To reproduce the issue do the following:
- Specify a null text for the ASPxTextBox editor using the NullText property value.
- Invoke the GetText method, for example, in the client-side UserInput event handler:
JavaScriptfunction OnUserInput(s, e) {
alert(s.GetText());
}