RichEditBuilder.OnDocumentChanged(String) Method
Assigns an event handler to the DocumentChanged event.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.1.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
Declaration
public RichEditBuilder OnDocumentChanged(
string callback
)
Parameters
Name | Type | Description |
---|---|---|
callback | String | The name of the JavaScript function or the JavaScript function code used to handle the event. |
Returns
Type | Description |
---|---|
RichEditBuilder | 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.');
}")
// ...
See Also