Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Editor > RadTextEditor
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered RadTextEditor

Feed from this thread
  • nickybeit avatar

    Posted on Jun 7, 2011 (permalink)

    Hi Support,

    I'm using telerik controls of version 2010. I'm facing the issue when I copy the image tag inside RadTextEdior.

    I've an Image tag placed inside the anchor link as follows.

    <a href="javascript:MyFunction()" ><img src="Sample.jpg" /></a>

    When I manually copy the image using(ctrl+c), it copies only the image and not the entire hyperlink. According to my requirement when I copy the image, it should copy the image tag along with the anchor link.

    Is there any way to accomplish this task.

    Anticipating a positive and sooner reply.

  • Rumen Rumen admin's avatar

    Posted on Jun 7, 2011 (permalink)

    Hello Nickybeit,

    This is a browser behavior of IE9. You can reproduce the same behavior with and editable DIV / IFRAME as well as our competitors' editors. You can see the following video for more information: http://screencast.com/t/8YzpWFHW3CG.
    and test the same scenario with the following editable DIV:    
    <div contenteditable="true" style="width:300px;height:300px;border: 1px solid red;">sample content</div>

    The clipboard content is provided by the OS and browser and RadEditor does not modify it except when the Word specific formatting is stripped.

    What you can only do is to render the page in IE8 mode using the following tag:

    <meta http-equiv="X-UA-Compatible" content="IE=8" />

    and see whether this will fix the browser behavior.

    Best regards,
    Rumen
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

  • nickybeit avatar

    Posted on Jun 8, 2011 (permalink)

    Hi Support,

    Thank you so much the reply.

    Found it very useful

    Thanks & Regards
    Nickybeit

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Editor > RadTextEditor