Search

You searched for the word(s): document
Showing page 193 of 325 (3,244 total posts) < 1 second(s)
  • insertation point

    is there a way to retrieve and set the current insertation point in cuteeditor from javascript? i'm using the following javascript to insert text into the cuteeditor:      document.getElementById('<%=CuteEditor.ClientID%>').ExecCommand('PasteHTML',false,s); but i'm losing the current insertation point because the text is ...
    Posted to Cute Editor for .NET (Forum) by RodneyLai on April 22, 2005
  • Re: Automation and options relating to pasting HTML from MS Word -- Need documentation

     randal wrote: I set out to eliminate the confirmation dialog when pasting text from MS Word.  After searching long and hard all over the site, I found an answer in the forums but still took me a while to figure out how to apply the suggestion.  In my search I found the PasteBehavior enumeration, but not how or where to ...
    Posted to Cute Editor for .NET (Forum) by Adam on April 12, 2005
  • Automation and options relating to pasting HTML from MS Word -- Need documentation

    I set out to eliminate the confirmation dialog when pasting text from MS Word.  After searching long and hard all over the site, I found an answer in the forums but still took me a while to figure out how to apply the suggestion.  In my search I found the PasteBehavior enumeration, but not how or where to use the constants ...
    Posted to Cute Editor for .NET (Forum) by randal on April 12, 2005
  • Installation Help Please

    Hi CuteChat, (I am reposting this as no-one as replied to my first post. Without Help from CuteChat your product is useless and I will have to return it) Your chat application looks great but your installation documentation is very sparse and ambigous. Here is what I have done. I have a VS .NET 2003 Web Project which has our customers web ...
    Posted to Cute Chat and Cute Web Messenger (Forum) by emerald-db on April 1, 2005
  • Errors in CuteEditor 2.2 after upgrading to Win XP SP2

    I recently upgraded my laptop to Win XP Service Pack 2, and I'm now getting errors I didn't get before. My desktop (non SP-2) still works fine with it. The issues are: In WinIE.js I get a permission denied error on the linevar editor = document.getElementById(editing.EditorID); I also get permission denied errors on one of my pages ...
    Posted to Cute Editor for .NET (Forum) by Tazmaster777 on March 29, 2005
  • Issues with PasteWord

    I have three issues I need help with. 1) I need to know how call the word cleanup function (from the code cleaner dialog) without opening the dialog first.  Same with the font cleaner.  What I want to be able to do is allow a user to click a ''Word cleanup'' button, and have just that function run. 2) I need to know if there is ...
    Posted to Cute Editor for .NET (Forum) by mw371r on March 28, 2005
  • Help for disable some icon from context menu

    Hi I download cutesoft.net 4.0 Free Trial today. I try to disable context menu by change Full.config, it doesn't work.From your online document, I only need  change <contextmenu>   <item name=''Editing'' value=''False''/>will disable Editing, but it not work for me . by the way, what if I want to disable ...
    Posted to Cute Editor for .NET (Forum) by sunnyz on March 23, 2005
  • Re: Where is the content saved to the page?

    Charles - When submitting your form, you need to perform the following for the editor content to be captured: function submitForm() {   save(Editor1)   document.forms[0].submit() ;} ....then on the ASP page that receives the form, you can retrieve the posted content with the following: ...
    Posted to Cute Editor for ASP (Forum) by Anonymous on March 7, 2005
  • Custom button: Object reference not set to an instance of an object.

    To add a custom button, I use the following code in the Page_Load of my web form: WebControl toolctrl4 = Editor1.CreateCommandButton(''send'',''send.gif'',''Insert My Custom Text''); toolctrl4.Attributes[''onclick'']=''document.Form1.submit();''; int pos = ...
    Posted to Cute Editor for .NET (Forum) by enderwiggen2 on February 11, 2005
  • Re: setting cuteeditor text links

    Alice, Sorry, I am still confused about what you are trying to achieve. But I can provide a way to access Cute Editor Text from client side javascript. // get the editor client ID var editor1=document.getElementById('<%=Editor1.ClientID%>');   //Get the editor content  var editdoc=editor1.GetDocument(); // Get ...
    Posted to Cute Editor for .NET (Forum) by Adam on January 24, 2005