Search

You searched for the word(s): editor1
Showing page 2 of 42 (415 total posts) < 1 second(s)
  • Re: File Manager Instructions

    jay13,   The source code of this example is included in the download package.   <!-- #include file = ''CuteEditor_Files/include_CuteEditor.asp'' --> <html>      <head>  </head>     <body>        <h1>Use ...
    Posted to Cute Editor for ASP (Forum) by Adam on September 3, 2008
  • Re: Font Color Pallette

    Yes. I'm using Cute Editor 3.0. The EnableAll toolbar sample works but I think there's something wrong with the Multiple Editors sample. Please try to click on both the first and second Set Font Color toolbars. Btw, here's a sample of my code: content = strBody Dim editor1 Set editor1 = New CuteEditor editor1.ID = ...
    Posted to Cute Editor for ASP (Forum) by marvin_tyrone on November 16, 2004
  • Re: editor1.GetSelection() return type

    timbuck,   >>Can one use Editor.GetSelection().TagName | innerHTML | className etc ?   You can't.   You have to detect the selection type first.   If the selection type is control, it's easy.   If not, you have to write many code to get element object from the current selection.  
    Posted to Cute Editor for ASP (Forum) by Adam on September 29, 2008
  • Re: CuteEditor as Image Selector

    Okay, now I'm having a second issue. I have two editors on the same page.   Dim editor1   Set editor1 = New CuteEditor   editor1.ID = ''LogoEditor''   editor1.Width = ''201''   ...
    Posted to Cute Editor for ASP (Forum) by Bradley on April 2, 2009
  • editor1.GetSelection() return type

    In my efforts to create a custom dialog I now find myself wondering what type of object is returned by editor.GetSelection() What I am trying to do is select an IMG in the Editor then click My custom dialog button , open my dialog, when the dialog opens it has access the the selected Item and can get the HTML or Properties of the item. First to ...
    Posted to Cute Editor for ASP (Forum) by timbuck on September 25, 2008
  • Re: No More JavaScript API in 6.0??

    max,   Please use the new JavaScript API.     <script type=''text/javascript'' >    function getHTML()    {     // get the cute editor instance     var editor1 = ...
    Posted to Cute Editor for ASP (Forum) by Adam on May 8, 2007
  • Re: save("Editor1") function not working correctly in mozila

    fixed it. we readded the code to the draw() function like this:   Response.Write ''<SCRIPT LANGUAGE=javascript>'' & VbCrLf Response.Write ''<!--'' & VbCrLf Response.Write ''function save(x) {'' & VbCrLf Response.Write ''return true'' & VbCrLf ...
    Posted to Cute Editor for ASP (Forum) by e-spike on August 22, 2004
  • Re: How to show text on editor from variable

    You can try the following code: <%@ Page Language=''C#'' %> <%@ Register TagPrefix=''CE'' Namespace=''CuteEditor'' Assembly=''CuteEditor'' %> <html> <head> </head> <body>     <form id=''Form1'' runat=''server''>     <CE:Editor ID=''Editor1'' ...
    Posted to Cute Editor for ASP (Forum) by Eric on August 11, 2010
  • Re: save(Editor1) and Netscape

    sorry didn;t really explaing myself very well. I am doing a form check onsubmit: function addTopic() {  var frm = document.frmAddTopic;     save(Editor1);  if(frm.name.value=='')  {   alert(''Please add a SUBJECT'');   frm.name.focus();   return ...
    Posted to Cute Editor for ASP (Forum) by vlitim on March 8, 2005
  • Re: setHTML is not working in IE6

    Dear sridharRepala,   I tested the following snippet in ie6.0, it works fine:   <!-- #include file = ''cuteeditor_files/include_CuteEditor.asp'' --> <html>      <head>   </head>  <body>   <table cellspacing=''0'' cellpadding=''3'' width=''800'' ...
    Posted to Cute Editor for ASP (Forum) by Eric on May 13, 2011