Search

You searched for the word(s): javascript
Showing page 285 of 408 (4,076 total posts) < 1 second(s)
  • 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
  • slow loading

    Is there anything I can do to decrease the load time for this editor?  It seems to take forever to load.  I have cutomized  the toolbar to only include the buttons I need.  Is there a way to preload it,  like you can do with images using Javascript?  I created the control at design time - and set it to ...
    Posted to Cute Editor for .NET (Forum) by anscott on January 17, 2006
  • Background image

    I'm using the classic ASP version of cute editor.   It lets me specify background color property - but is possible to let it specify background image.  (I notice the CE I'm writing in lets you do that).   If it's not available by default - what would be the best means of doing it programmatically?  I'm fluent in JavaScript ...
    Posted to Cute Editor for ASP (Forum) by paulw20012002 on December 17, 2005
  • retrieve data from editor

    Hi My integration is like this. 1)the editor is deployed as an asp.net application 2)In ourmain asp page, we have a iframe that links to the asp.net editor page 3)our main asp page has quite a few other data fields and when a user click ''save'' button in the main asp page, it should save the editor data and the data in ohter fields. That is, ...
    Posted to Cute Editor for .NET (Forum) by mark lin on December 16, 2005
  • Re: Get selected text and rewrite it

    >>How can I get a selected HTML text and replace it with my own?    var editor1 = document.getElementById('<%=Editor1.ClientID%>');     var editselection=editor1.GetSelection();      var r= editselection.createRange();    alert(r.htmlText); // ...
    Posted to Cute Editor for .NET (Forum) by Adam on November 25, 2005
  • Encoding mailto: links within the editor

    Is there a way currently to encode a mailto: link so that spammers can't harvest e-mails?  I know you can use javascript on a regular html page to do this but was not sure how you could implement this in the editor within DNN.   If you can do this already could you please post an example?  If not is this something that could be ...
    Posted to Cute Editor for .NET (Forum) by netmds on October 26, 2005
  • Expected hexadecimal digit error

    I have a site that has been upgraded to V5.  When i run it on an internal server, its fine but once I put it onto an external server, complete with SSL then i get a javascript Expected hexadecimal digit error when it attempts to load the editor.  All the buttons appear to be showing EXCEPT the dropdowns: Font, size, etc.   I've ...
    Posted to Cute Editor for .NET (Forum) by cheryll on October 2, 2005
  • Marquee tool ?

    Hey.   Getting the file upload (see previous post) to work was a great step foward, our client is very satisfied (if we hadn't got this to work, we would probably have had a lawsuit by now  ).   However, they have requested a marquee tool.  If I understand correctly, I can create that tool myself pretty easily, ...
    Posted to Cute Editor for ASP (Forum) by silicoNimagE on September 24, 2005
  • Struggling with PasetHTML()

    Here's how I have the control in my ASP.NET page: <ce:editor id=''Editor1'' runat=''server'' width=''680'' height=''550''></ce:editor> But this javascript gives me an error: var editor1 = document.getElementById('CE_Editor1_ID');editor1.PasteHTML('This is a test');I get this error: Error:  Object does not support this ...
    Posted to Cute Editor for .NET (Forum) by cmessineo on September 16, 2005
  • Re: Adding a stripHTML function and counting characters

    Jess, Please put your code into the Iframe instead of textarea.   <iframe onKeyDown=''checkIt''></iframe> <script language=''JavaScript''> function checkIt(){    var stripped = obj_Editor1.editdoc.body.innerText;   var diff = stripped.length - maxLength;     if (diff > 0) ...
    Posted to Cute Editor for ASP (Forum) by Adam on August 29, 2005