HTML Editor for ASP.NET AJAX Professional Edition
ModifiedChanged Property
Server ReferenceWinthusiasm.HtmlEditorHtmlEditorModifiedChanged
The name of a JavaScript function on the page to call when the modified flag changes.
Declaration Syntax
C#
public string ModifiedChanged { get; set; }
Remarks
The client-side editor will call the named JavaScript function on the page whenever the modified flag changes. This allows the developer to take appropriate action, such as perhaps enabling and disabling a Save button on the page.
Examples
Set the property declaratively in the HtmlEditor tag:
CopyC#
ModifiedChanged = "MyModifiedHandler"
Page JavaScript function:
CopyC#
function MyModifiedHandler(editor, isModified)
{
    var saveButton = $get("SaveButton");
    saveButton.disabled = !isModified;
}

Assembly: Winthusiasm.HtmlEditor (Module: Winthusiasm.HtmlEditor) Version: 2.7.0.0 (2.7.0.0)