I just recently purchased the .Net 6.6 version and am trying to figure out how to:
- Customize so that every editor I add to a web page will apply specific default settings. For example
- Editor1.EditorOnPaste = CuteEditor.PasteBehavior.PasteText
- Editor1.ShowHtmlMode = False
- Editor1.ShowPreviewMode = False
- Etc.
I don't want to have to edit every page that contains an editor.
- How can one modify the InsertImage.aspx page where I want to disable the <div id="browse_Frame">section, so I can create my own code to build my image list from our SQL database. I am just looking for how best to disable the above DIV so that the code does not bother to try and get the list of images from the server.
- When a user clicks on one of the dialogs (Insert image, Insert hyperlink, etc.), how can I get the ID of the editor that called the dialog
I was able to make all these modifications in the ASP version, but I am not able to see how to do these things in the .Net version.
Would really appreciate your assistance.