This is a migrated thread and some comments may be shown as answers.

RadEditor lost cursor

1 Answer 60 Views
Editor
This is a migrated thread and some comments may be shown as answers.
ankit
Top achievements
Rank 1
ankit asked on 29 Nov 2010, 11:41 PM
Hi There,

We have license version of Rad control. I am using this control with my .Net 2 web application.
Product/File Version : 7.3.6.0

I am having problem which looks to be solved in another application with your latest RAD control. We have newer version of rad controls for another site with .Net 3.5 web apps.

Problem:
I select something on Rad Editor and hit Italic button, to make my font italic, it works fine.
When I don't select anything and click Italic button, to next typing character as italic, it jumps up the screen and looses cursor position and puts at the beginning of the editor. ITALIC is one of the example, it happens same with bold, etc...

I have also tried putting RadA:AjaxSetting but, still it's same.

If you can provide me some example/solution/link, it will be great.

Thanks in advance.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 01 Dec 2010, 03:02 PM
Hi Ankit,

Do you experience this problem in IE8 only? If so please put the following JavaScript code under the RadEditor Classic declaration and try to reproduce the problem again:

<rade:radeditor id="RadEditor1" runat="server"
    imagespaths="~/Images"
    editable="true">
</rade:radeditor>
<script type="text/javascript">
RadEditor.prototype.SetActive = function()
 {
  if (this.IsIE)
  {
   var curArea = this.Document.body;
   if (curArea && curArea.setActive) curArea.setActive();
  }
 };
</script>


Please, note that the developmental of RadEditor Classic is discontinued more than 2 years ago and it is recommended to migrate to the new version of RadControls for ASP.NET AJAX. You can use the Telerik.Web.UI.dll placed in the Bin20 installation folder for .NET 2.0 applications.

Best regards,
Rumen
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Editor
Asked by
ankit
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or