DocumentChangedEvent Class
An event that occurs if any change is made in the document.
Declaration
export class DocumentChangedEvent extends RichEditEvent<EventArgs>
Remarks
You can define the DocumentChanged event handler either at the server side, at the client side, or at runtime.
Use the OnDocumentChanged(String) method to specify the event handler.
@(Html.DevExpress().RichEdit("richEdit")
.OnDocumentChanged("function(s,e) {
console.log('The document has been changed.');
}")
// ...
The event handler receives an argument of the EventArgs type.
Inheritance
Event<TSource, TEventArgs>
RichEditEvent<TEventArgs>
DocumentChangedEvent
See Also