Search

You searched for the word(s): document
Showing page 198 of 325 (3,244 total posts) < 1 second(s)
  • Re: PasteHTML issue

    I think that was discussed above, and that does indeed work.  However, my problem (and it sounds like his as well) is that we have the text in a control outside of the editor, not in the toolbar.   It would be like clicking a position in the editor, then clicking in the ''Try click the ''get HTML'' button'' text box, then pressing the ...
    Posted to Cute Editor for ASP (Forum) by schampion on May 17, 2006
  • Re: opening create template on button click--Object reference not set to an instance of an object

    I have tested ken's code, it works.   <%@ Page Language=''C#'' ValidateRequest=''false'' %>     <%@ Register TagPrefix=''CE'' Namespace=''CuteEditor'' Assembly=''CuteEditor'' %>  <html>   <head>   </head>   <body>       ...
    Posted to Cute Editor for .NET (Forum) by Eric on May 11, 2010
  • Re: 6.2/6.3/6.4 issue with CuteEditorDropDown class in IE7

    <?xml version=''1.0'' encoding=''utf-8'' ?>  <configuration>   <codeviewToolbars>    <item type=''g_start'' />    <item type=''image'' name=''Save'' postback=''True'' />    <item  ...
    Posted to Cute Editor for .NET (Forum) by Adam on June 11, 2009
  • Re: Changed event firing on click in FireFox

    fredd, This issue only happen when the editor is empty. Unlike IE, when the editor is empty, firefox will insert some code automatically. Then Cute Editor cleans it up.  So CuteEditor_OnChange event is fired. Here is a work-around: <script language=''JavaScript'' type=''text/javascript'' >   var ...
    Posted to Cute Editor for .NET (Forum) by Adam on August 30, 2007
  • Re: Bug: resizing editor

    This is by design:   When the user resizes the editor using ''+'' button, the information is stored in the client side. When the page post backs, the height of editor will be set based on the value of Editor.Height property.   For what you want to do, this is my suggestion.   1. Create a hidden field   2. When page ...
    Posted to Cute Editor for .NET (Forum) by Adam on December 28, 2006
  • Select image with ExecCommand('insertimage') and write path to textbox

    Does anyone know how to use the editor1.ExecCommand('insertimage'); to upload and select an image and have the Insert button cause a textbox to be filled with a path to the image file?   Here is the javascript I have tried but doesn't write path back to imageFld textbox:      function callInsertIMG()  ...
    Posted to Cute Editor for .NET (Forum) by mlc962 on May 19, 2008
  • Re: Inserting an image at current cursor position.

    Paul,   Try the following code:   <Script Language=''javascript''>     function callInsertImage()      {     var editor1 = document.getElementById('<%=Editor1.ClientID%>');             ...
    Posted to Cute Editor for .NET (Forum) by Adam on September 11, 2007
  • Scroll to top of the page on postback

    Hello, It seems that Cute Editor control resets page scroll position back to the top after a postback. I'm using ''CuteEditor.dll'' v6.0.0.0 (CuteEditor 6.0 Build 2007-05-10). I have tracked the issue down to ''CuteEditorImplementation.js'' (this ''js'' is accessed from ''LoadXMLAsync'' function in ''Loader.js'', if this helps...) I ...
    Posted to Cute Editor for .NET (Forum) by ybelov on May 18, 2007
  • Re: Any way to suppress the scroll bars in the Editor?

    The problem I have with the above approach is that it assumes the editor is always read-only on the page. This page switches between r/w and r/o depending on the document state in our workflow. I'll see if I can adapt the above to turn the scroll on and off when the document state switches.   One thing I'd like clarification on: In the ...
    Posted to Cute Editor for .NET (Forum) by Richard Schaefer on July 12, 2010
  • Re: Issue with pasting content in Chrome

    Hi Comartis, Please try the example page below, it works fine for me. Focus on the text box, then click the button. <%@ Page Language=''C#'' AutoEventWireup=''true'' %> <%@ Register TagPrefix=''CE'' Namespace=''CuteEditor'' Assembly=''CuteEditor'' %> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Transitional//EN'' ...
    Posted to Cute Editor for .NET (Forum) by Kenneth on November 16, 2011