I need to inspect the html returned from the ImageProperties dialog. I am attempting to use the OnClientPasteHtml function to handle this but it is not getting fired when I use the dialog. The html is beign updated but the event doesn't get fired. It is getting fired properly form the ImageManager,Hyperlink dialog,etc. but not the ImageProperties dialog.
| function OnClientPasteHtml(editor, args) |
| { |
| alert(args.get_commandName()); |
| } |
| <telerik:RadEditor ID="HtmlContent" runat="server" Width="100%" Height="350px" EditModes="Design, Html" OnClientPasteHtml="OnClientPasteHtml" |
| ToolsFile="/Portal/config/ToolsFile.xml" ContentFilters="IndentHTMLContent" AutoResizeHeight="false" |
| StripAbsoluteImagesPaths="true" Skin="WebBlue"> |
| <ImageManager EnableImageEditor="false" /> |
| </telerik:RadEditor> |
