RichEditBuilder.OnDocumentChanged(String) Method
Assigns an event handler to the DocumentChanged event.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.2.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
#Declaration
public RichEditBuilder OnDocumentChanged(
string callback
)
#Parameters
Name | Type | Description |
---|---|---|
callback | String | The name of the Java |
#Returns
Type | Description |
---|---|
Rich |
The builder for the Rich Text Editor. |
#Remarks
The DocumentChanged event occurs if any change is made in the document.
@(Html.DevExpress().RichEdit("richEdit")
.OnDocumentChanged("function(s,e) {
console.log('The document has been changed.');
}")
// ...