Re: Problem migration to version 5

  •  02-03-2006, 6:00 AM

    Re: Problem migration to version 5

    1. Yes, is strange but don't work. In online demo work good. here no! and i've setted editor.XHTMLOutput = true

    2. If you do not specify height and width as in http://cutesoft.net/asp/xhtml1-transitional-dtd.asp there are only smart propblem. but try to set them.... the editable area is not visible!

    3. In version 3 if i past text from  webpage or word... i can see only plain text. That is good if you want to store data in database without formatting. In this version when i past from webpage or word it take all the formatting data! I've tested all option, with the same result. It past all! So i want, as in version3, to past only plain text when use contextual menu > paste.

    4. if i paste <script>alert('hello')</script> in html mode on your demo and then press on preview mode or normal mode, the script will be removed. Here no! and i've set editor.EnableStripScriptTags = false

    5. I cant use the emoticon with relative path. Why?

    Now i'm thinking that i've an out-of-date version. I've downloaded it two days ago.

    <%
        Dim editor
       Set editor = New CuteEditor
       editor.ID = "Editor1"
       editor.XHTMLOutput = true
       editor.AutoConfigure = "gocity_easy1"
       editor.Width = 444
       editor.Height = 300
       editor.Text = alertalert
       editor.FilesPath = "../editor5/gocityeditor"
       editor.CustomCulture = "it-IT"
       editor.ThemeType = "Office2003"
       editor.EditorWysiwygModeCss = "/intranet/inc/css/editor.css"
       editor.EnableStripScriptTags = false
       editor.BreakElement = "br"
       editor.EditorOnPaste = "PasteText"
       editor.Draw()
      %>
     
    and don't work the example too
     
      <%
       dim content
       content = "Type here"    
        
       Dim editor
       Set editor = New CuteEditor
       editor.ID = "Editor1"
       editor.Text = content
       editor.FilesPath = "CuteEditor_Files"
       editor.EditorBodyStyle = "table { font:normal 12px arial; }"
       editor.EditorWysiwygModeCss = "asp.css"
       editor.XHTMLOutput = true
       editor.Draw()
                
       ' Request.Form(ID) access from other page
      %>
View Complete Thread