Search

You searched for the word(s): document
Showing page 212 of 325 (3,244 total posts) < 1 second(s)
  • Re: A few errors need help

    Hi Adam,   Which version are you using? I'm using  ver 6.3 in my rough memory   1. In standard dialog, find & replace, image map and image editor are  malfunction. Can you reproduce this issue in this example? http://cutesoft.net/example/general.aspx If so, can you show me the steps to reproduce the problems?  I ...
    Posted to Cute Editor for .NET (Forum) by nadol_c on August 19, 2009
  • Re: OK - Valid question re: CuteEditor_FilterHTML

    no Adam, it didn't make any difference, again trying another approach, the following works for my purpose as I'm mainly concerned about pasted text... BUT as always there's an issue, this code does not work with firefox, any idea as to why not and is there a workaround?   function ...
    Posted to Cute Editor for .NET (Forum) by karl0 on January 27, 2009
  • Re: Custom Button Questions

    Thanks Adam,   That helped a lot.  Now I need to be able to paste back in to the main editor, but keep the <script> tags in place.  I'm using the code from the example:   function button_click() { var editor=Window_GetDialogArguments(window); var ...
    Posted to Cute Editor for .NET (Forum) by Aaron Edwards on April 9, 2008
  • Re: How to get the richtext format out?

    Hi  i used the Editor.text property and got the text . let me explain. if i have entered Hi i am Testing. when i read from Editor using Editor1.text the text which is stored in database is <p>H<strong>i i am <em>Testing. </em></strong></p> And when i retrieving the data from data ...
    Posted to Cute Editor for .NET (Forum) by raviteja84 on November 15, 2007
  • Re: Dotnetnuke integration file storage security risk?

    We are using DNN 4.4 and 4.6 on different servers now. I know these functions since we used DNN 4.1+, i think that is about a year now. You can define those directory's in File manager.   DNN ''Secure - file system'' folder is a very nice function. When you upload a file to those folders, it adds ''.resource'' to the end of ...
    Posted to Cute Editor for .NET (Forum) by Global-e on October 26, 2007
  • Re: How to diable chat_input div from focus after add message

    ronbl,  Try put the following code in the end of CH_MainForm.aspx:  if(chat_input.hasFocus()) {        // Give focus back to the page    var range;    range = document.body.createTextRange();    range.moveStart('textedit', ...
    Posted to Cute Chat and Cute Web Messenger (Forum) by Adam on December 9, 2005
  • How to read <body> tag contents

    ?   How do I find out what the margins, background colors and other things in the <body> section are?  I need to know in javascript how to determine the margin settings.   Also, how to set margins in the current editor's document content using javascript?   Where is PageProperties property in the editor?
    Posted to Cute Editor for .NET (Forum) by fredd on July 14, 2007
  • Re: Wrong <SCRIPT/> tag formatting

    Hi Herev, If you set it as the code below, that should be the correct behavior. Because your content in the same line, so editor set it as the same line. function setContent() {     var editor1=document.getElementById(''<%= editor1.ClientID %>'');     var s=''<script>alert('111');// simply a test ...
    Posted to Cute Editor for .NET (Forum) by Kenneth on November 21, 2011
  • Re: Problem with display:none and firefox

    Just a quick option...  This may or may not work:   I assume you're using JavaScript to do the dynamic CSS changes.  From what you've said in your previous post, I assume your code looks something like this:   if (some condition) {    document.getElementById('div_id').style.display = ''none''; } else ...
    Posted to Cute Editor for ASP (Forum) by Maximus5684 on April 16, 2007
  • Undo Event

    Can I detect an Undo event (like CuteEditor_OnCommand() )   I need to display changed text when an Undo operation is called. I tried following and it did not work:    function CuteEditor_OnUndo(editor)  { //when the content be changed. document.getElementById(''Results1'').innerHTML = editor.getHTML(); } ...
    Posted to Cute Editor for .NET (Forum) by piyushvarma on May 13, 2010