This question is locked. New answers and comments are not allowed.
Using the code below, my save button click event does not fire if changes exist in the editor. That is, it appears that the onchange event is canceling all other events?
@(Html.Telerik().Editor() .Name("NarrativeEditor") .ClientEvents(e => { e.OnLoad("PPC_narrativeEditorOnLoad"); // to do: if this change event exits, then save button click does not fire e.OnChange("PPC_narrativeEditorOnChange"); }) .Tools(t => { t.Clear(); t.Custom(settings => settings .Template(@<text> <input type="submit" class="sunset editor-button save" title="Save" value="" onclick="alert('Save!!'); return false;" /> </text>) ); t.Custom(settings => settings .Template(@<text> <input type="submit" class="sunset editor-button refresh" title="Refresh" value="" onclick="alert('Refresh!!'); return false;" /> </text>) ); t.Break(); t.Bold(); t.Italic(); t.Underline(); t.Strikethrough(); t.Separator(); t.FontName(); t.FontSize(); t.FontColor(); t.BackColor(); t.Separator(); t.JustifyLeft(); t.JustifyCenter(); t.JustifyRight(); t.JustifyFull(); t.Separator(); t.InsertUnorderedList(); t.InsertOrderedList(); t.Separator(); t.Outdent(); t.Indent(); t.FormatBlock(); t.Separator(); t.CreateLink(); t.Unlink(); t.Separator(); t.InsertImage(); }))