Search

You searched for the word(s): javascript
Showing page 209 of 408 (4,076 total posts) < 1 second(s)
  • Re: Object doesnt support property or method

    You are using the .NET javascript API.   For the classs asp, please use the following code instead:      <%    dim content    content = ''Type here''     Dim editor    Set editor = New CuteEditor    editor.ID = ...
    Posted to Cute Editor for ASP (Forum) by Adam on April 7, 2006
  • Re: RE: Cute editor does no post back to pages.

    mako239,Cute Editor for .NET supports all Internet Explorer versions from 5.5 up on Windows, Firefox 1.0+, Mozilla 1.3+, Netscape 7+ and Safari (1.3+). This includes Macintosh and Linux. This includes Macintosh and Linux. Keep in mind that you don't need a supported browser to see HTML pages generated using Cute Editor for .NET, you just need a ...
    Posted to Cute Editor for .NET (Forum) by Adam on February 7, 2006
  • Re: retrieve data from editor

    Mark,  First it's possible to retrieve the data from the editor using the client side script.Here is a demo:http://cutesoft.net/example/JavaScript-API.aspxCode is as followings:function getHTML(){    // get the cute editor instance    var editor1 = ...
    Posted to Cute Editor for .NET (Forum) by Adam on December 16, 2005
  • Re: Get selected text and rewrite it

    >>However function PasteHTML(html) helps only if I want to replace the whole HTML text in editor. How about ''replace selected text with my own''? Thank you in advance.   PasteHTML(html)  only replace selected text.   You can test here:   http://cutesoft.net/example/JavaScript-API.aspx   Select a piece ...
    Posted to Cute Editor for .NET (Forum) by Adam on November 25, 2005
  • Re: Is it possible to replace links dialog

    René,    You can use the following code to get the editor:   var editor1=document.getElementById('<%=Editor1.ClientID%>'); var editor1doc = editor1.GetDocument(); Now you can get the selection and write your JavaScript code:   For example: var sel =  editor1.GetSelection(); ...
    Posted to Cute Editor for .NET (Forum) by Adam on October 18, 2005
  • Re: Source code of the 4.0 version

    The javascript code of the version 4.0 is encrypted. If you need to have access to the source code, you can purchase the source code license. >>Furthermore, we don't see, in IE (but it runs OK in Firefox), the content of the link Type dropdown menu in the link dialog box. Can you reproduce the problem in the following ...
    Posted to Cute Editor for ASP (Forum) by Adam on August 16, 2005
  • Re: How to: Use the image selector from CuteEditor outside of the editor itself

    Hi Jason! Great work but I do not seem to get it to work.I've downloaded the most recent version of CE. I have more than one problem: 1. CE doesn't recognize this : <PageProperties Title='''' Description='''' HtmlBase='''' Keywords=''''> </PageProperties>  2. When running the Javascript it gives an error on: ...
    Posted to Cute Editor for .NET (Forum) by marrik on August 5, 2005
  • Re: Security config change at runtime?

    lucast, First please upgrade to the version 4.5.0.1.Demo is here:http://cutesoft.net/example/general.aspx>>Is there any way I can dynamically change the config file used via javascript on the client at runtime?I am afraid not.  We have to post back to the server change the security config ...
    Posted to Cute Editor for .NET (Forum) by Adam on July 21, 2005
  • Re: Errors In running

    SGS, What kind of the chat room interface are you want? Right now the CH_MainForm.aspx file is same for the portal solutions or simple chat portal.  >>Do I need to use another rich text box and elaborate code and my own javascript to talk to CuteChat server? I am confused.  can you explain more details what you are trying to ...
    Posted to Cute Chat and Cute Web Messenger (Forum) by Adam on April 7, 2005
  • Re: Dynamically Change the View between "Normal", "HTML", and "Preview"

    Figured it out (nearly). There is a function called EditorView in WinIE.js. I can call this function from the Editor Page using the On Click Event of a button (JavaScript) as below onclick=''EditorView(Editor1.0)'' Where: 0 = Normal View1 = HTML2 = Preview This allows me to set the view of the page as desired. Just need to get this ...
    Posted to Cute Editor for ASP (Forum) by Robdtaylor on February 22, 2005