Search

You searched for the word(s): editor1
Showing page 3 of 42 (415 total posts) < 1 second(s)
  • save("Editor1") function not working correctly in mozila

    I'm using your save(''Editor1'') on form submit to move my value from the rich text area to a hidden field, however i'm having the problem that mozilla (more specifically firefox 0.9) just won't recognise this command, and doesn't submit the form. Can you please let me know the code fix, or how this work around is actually supposed to ...
    Posted to Cute Editor for ASP (Forum) by e-spike on August 21, 2004
  • Re: Insert Text

    Ok, I had that working within the same window, but if I open a new window, how do I access the Editor object within the parent window from the opened window?   For example, I created a wrapper function for insertHTML where I pass Editor1 as the Editor object. My function is defined as follows (this is all Javascript, not ...
    Posted to Cute Editor for ASP (Forum) by Deech on August 26, 2004
  • save(editor1)

    I am in the process of migrating form Cute Editor for ASP V3.0 to V5.0 The following code is not functioning any more: function agdDoSave() {     save(Editor1);     document.forms[0].mode.value='SAVE';    document.forms[0].submit(); }   I am getting a JavaScript error at ...
    Posted to Cute Editor for ASP (Forum) by MHOUBOLT on January 23, 2006
  • firefox editor1.getselection is not a function

    I have a pop up box which loads a file, and merges in the location (url) into the html content of the editor. Works wonderfully in IE, but firefox generates the following error:   editor1.GetSelection is not a function   The pop-up window calls a function on the opening page: <script> var selText = ...
    Posted to Cute Editor for ASP (Forum) by pascalli on September 24, 2007
  • Re: firefox editor1.getselection is not a function

    pascalli,   Your code is wrong. Please use the code below:     function getSelectedHTML(){       var rng=null,html='''';       if (document.selection && document.selection.createRange){         ...
    Posted to Cute Editor for ASP (Forum) by Adam on September 24, 2007
  • Re: Object doesnt support property or method

    If you are using version 6.0 you should use the following JavaScript API:   http://cutesoft.net/asp/document/scr/JavaScript-API.htm     Getting the CuteEditor Instance In order to find the active editor, you would type:  // get the cute editor instance. Editor ID is Editor1 var editor1 = ...
    Posted to Cute Editor for ASP (Forum) by Adam on September 19, 2007
  • Re: Change event

    Hi cabolet,   Please try the example page below, it shows you how to check the editor content has been changed.    <!-- #include file = "cuteeditor_files/include_CuteEditor.asp" -->    <html>       ...
    Posted to Cute Editor for ASP (Forum) by Kenneth on August 24, 2012
  • Re: URGENT - Editor not posting changes in FireFox 1.0.6 using Javascript submit

    Adam: // get the cute editor instance var editor1 = document.getElementById('Editor1'); editor1.NotifySelectionChange(); 'Editor1' should be 'CE_Editor1_ID' when working with CuteEditor for PHP. Unfortunately also with this function still the hidden field isn't updated directly. I found a workaround myself: editor1 = ...
    Posted to Cute Editor for ASP (Forum) by J-roen on September 4, 2007
  • Re: setHTML bug in 6.5

    calxibe: When using:  var editor1 = document.getElementById('CE_Editor1_ID');  editor1.setHTML(document.getElementById('Content2').value);   The editor resets the EditorWysiwygModeCss, so that the new content don't get styles, the editor also becomes read only.   When using:  var editor1 = ...
    Posted to Cute Editor for ASP (Forum) by Adam on February 10, 2010
  • Re: setHTML bug in 6.5

    calxibe: When using:  var editor1 = document.getElementById('CE_Editor1_ID');  editor1.setHTML(document.getElementById('Content2').value);   The editor resets the EditorWysiwygModeCss, so that the new content don't get styles, the editor also becomes read only.   When using:  var editor1 = ...
    Posted to Cute Editor for ASP (Forum) by Adam on February 9, 2010