Cute Editor as an Image Uploader

Last post 02-22-2010, 1:12 AM by Kenneth. 6 replies.
Sort Posts: Previous Next
  •  01-14-2008, 1:19 PM 36299

    Cute Editor as an Image Uploader

    Hey guys,
     
    Is there an easy way to integrate Cute Editor as just an image uploader? I am using Version 6, and what I would like to do is have users click on "Upload Logo", which brings up a dialog from Cute Editor to pick the file, upload and auto-resize, and then do something in HTML:Javascript.
     
    By the same token, I would like to directly specify an image to edit and open up the Cute Editor Image Editor. I can't seem to find any samples of this, does anyone have any?
     
    All help greatly appreciated!
     
    Thanks for your time,
    -Phid
  •  01-14-2008, 11:13 PM 36308 in reply to 36299

    Re: Cute Editor as an Image Uploader

    Phid,
     
    >>Is there an easy way to integrate Cute Editor as just an image uploader?  
     
    Please check this example:
     
    How to use CuteEditor as an image selector?

    How to use CuteEditor as an image selector?( Demo1 |  Demo2 )

    This example demonstrates how to use CuteEditor as an image selector.

     
    The source code of this example can be found in the download package.
     
     >>directly specify an image to edit and open up the Cute Editor Image Editor.
     
    It's possible. Please check CuteSoft_Client\CuteEditor\ImageEditor\ImageEditorTest.aspx
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  01-15-2008, 10:10 AM 36327 in reply to 36308

    Re: Cute Editor as an Image Uploader

    Thanks Adam,
     
    That's exactly what I was looking for.
     
    Best Regards,
    -Phid
  •  02-18-2010, 9:53 PM 58825 in reply to 36327

    Re: Cute Editor as an Image Uploader

    When using masterpages, the image url does not show up in the text box. Is there a way to get this working?

    Matt
  •  02-19-2010, 12:07 AM 58828 in reply to 58825

    Re: Cute Editor as an Image Uploader

    I am having the same issues Matt - have you heard anything?
     
    Thanks
     
     

    St. Louis, Missouri

  •  02-20-2010, 8:45 PM 58865 in reply to 58828

    Re: Cute Editor as an Image Uploader

    Any word on this? I see other posts have been answered?
  •  02-22-2010, 1:12 AM 58881 in reply to 58865

    Re: Cute Editor as an Image Uploader

    Hi st louis mo/gim-matt,
     
    Find section below:
     
    document.getElementById("imageFld").value = imgs[imgs.length-1].src;
                editor1.ExecCommand('new');
                document.getElementById("imageFld").focus();
     
    Change to:
     
    document.getElementById('<%=imageFld.ClientID%>').value = imgs[imgs.length-1].src;
                editor1.ExecCommand('new');
               document.getElementById('<%=imageFld.ClientID%>').focus();
     
    Regards,
     
    ken
View as RSS news feed in XML