Urgent issue need to resolved..

Last post 12-31-2008, 8:42 AM by Anonymous. 2 replies.
Sort Posts: Previous Next
  •  12-23-2008, 12:07 PM 47204

    Urgent issue need to resolved..


    Hi Adam,
     
    I have crosschecked the following issues on all the examples available on cutesofts site.Its not working.
    1. once the I added a word into the dictionary then added word is maintained only for that specific browser in which the word was added.if u will login with other browser then u will find that added word is not there in the dictionary .I need to add the same word again.
    2. Resizing CuteEditor in safari resize the content area and with this the content area can be totaly disappear.
    3. If I drag a icon on editor..in IE 7.0 it takes the correct src. but in FireFox it removes the http://www.abc.com/test. this was the same issue I come across when I tried to paste image through customize aspx page. But there It got solved as I 'm creating the <img ....> string and there I put src_cetemp. bu there it uses the editors paste method.
    4. In spellcheck option the word count isnot correct.
    5. The word count and character count on editor is also not correct.
    6. even if not entered any thing to editor , when try to get the value or check it
      if (Editor2.value="")
      {
      do some thing
      }
      Else
      {
      Do something
      }
      It alwasy goes to Else condition. When I debug this I found when the value isblank the editor2.value is having values like
      "\r\n\r\n\r\n".
      Please provide some solution
    7. “Cut” button is enabled by default and every time when I click “cut” it removes left most character.
    8. In FireFox if I click on HTML or Preview tab then it must get highlighted as in case on IE 7.0.
       The 3 tabs in the botton... "Normal","HTML" and "preview"
    9. Not able to play Embedded object from dekhona.com
        

      <object width='400' height='333'><param name='movie' value='http://www.dekhona.com/player.swf' /><param name='flashvars' value='image=2008/11/18/jbfcesuoto.jpg&file=2008/11/18/jbfcesuoto.flv&showfsbutton=false' /><embed src='http://www.dekhona.com/player.swf' width='400' height='333' flashvars='image=2008/11/18/jbfcesuoto.jpg&file=2008/11/18/jbfcesuoto.flv&&showfsbutton=false'></embed></object>

       
  •  12-28-2008, 10:01 PM 47251 in reply to 47204

    Re: Urgent issue need to resolved..

    1. once the I added a word into the dictionary then added word is maintained only for that specific browser in which the word was added.if u will login with other browser then u will find that added word is not there in the dictionary .I need to add the same word again.

      The new added word is stored in the client side cookie in the current design. For example, if one user want to add "somewordnotexist" into dictionary, it should only affect himself.

      If you want to add a word for all users, please check this article.
       
       

    2. Resizing CuteEditor in safari resize the content area and with this the content area can be totaly disappear.

      http://cutesoft.net/example/Auto-Adjusting-Height.aspx

      Which version of Safari are you using? I just tried Safari 3.2.1. It works fine here.
    3. If I drag a icon on editor..in IE 7.0 it takes the correct src. but in FireFox it removes the http://www.abc.com/test.

      This is the Firefox behavior. We don't have solution to this issue.

      this was the same issue I come across when I tried to paste image through customize aspx page. But there It got solved as I 'm creating the <img ....> string and there I put src_cetemp. bu there it uses the editors paste method.


    4. In spellcheck option the word count isnot correct.

      We will investigate this issue and get back to you.
    5. The word count and character count on editor is also not correct.

      We will investigate this issue and get back to you.
    6. even if not entered any thing to editor , when try to get the value or check it
      if (Editor2.value="")
      {
      do some thing
      }
      Else
      {
      Do something
      }
      It alwasy goes to Else condition. When I debug this I found when the value isblank the editor2.value is having values like
      "\r\n\r\n\r\n".
      Please provide some solution

      Please use the JavaScript API to get the html code from editor.

      getHTML()

      This method is used for retrieving the content of CuteEditor as HTML.

      Example:

      // get the cute editor instance
      var editor1 = document.getElementById('<% = Editor1.ClientID%>');

      // retrieving the content of Cute Editor as HTML
      var content = editor1.getHTML();
      alert(content );
    7. “Cut” button is enabled by default and every time when I click “cut” it removes left most character.
    8. In FireFox if I click on HTML or Preview tab then it must get highlighted as in case on IE 7.0.
       The 3 tabs in the botton... "Normal","HTML" and "preview"

      We will investigate this issue and get back to you.
    9. Not able to play Embedded object from dekhona.com
        

      <object width='400' height='333'><param name='movie' value='http://www.dekhona.com/player.swf' /><param name='flashvars' value='image=2008/11/18/jbfcesuoto.jpg&file=2008/11/18/jbfcesuoto.flv&showfsbutton=false' /><embed src='http://www.dekhona.com/player.swf' width='400' height='333' flashvars='image=2008/11/18/jbfcesuoto.jpg&file=2008/11/18/jbfcesuoto.flv&&showfsbutton=false'></embed



             This is the correct syntax to embed flash movie.


    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="280" height="220" xcodebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
    <param name="Movie" value="/uploads/flash.swf"    /> <param name="Quality" value="high"   /><param name="wmode" value="transparent"   /><embed src="http://cutesoft.net/uploads/flash.swf" width="280" height="220" quality="high" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"   ></embed>
    </object>

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  12-31-2008, 8:42 AM 47313 in reply to 47251

    Re: Urgent issue need to resolved.. “Cut” button is enabled by default and every time when I click “cut” it removes left most character.

    Hi Adam,
     
    Any thing on , "Without selecting any word or character, if I click on "Cut button" on toolbar, it will cut the left most character from the cursor position.
     
     
    Please check theimage for pointnumber 2
     
View as RSS news feed in XML