My development environment is as follows;
- ASP.NET MVC version - 1.0.0.0
- OS - Windows XP Service Pack 2
- exact browser version - 8.0.6001.18702
- exact version of the Telerik product - 2011.1.315.135 (Runtime version - v2.0.50727)
- preferred programming language - C#
When I move curson from Telerik Rad editor to simple HTML.Textbox it throws following errro;
htmlfile: Unexpected call to method or property access.
in telerik.editor.min.js
at this code
do{a2.insertBefore(a3,a3.previousSibling);
To reporduce the error one can start with simple MVC (1.0) project. Add Telerik dll, css in contents and scripts with their folders and write the following code in Index.aspx (which is just adding one telerik ediror and one html text box)
<p>
<%
Html.Telerik().Editor()
.Name("AllAuthorsRadEditor")
.HtmlAttributes(new { style = "height:30px; width:700px;" })
.Tools(tools => tools
.Clear()
.Bold().Separator().Italic())
.Render();
%>
</p>
<p><input type="text" /></p>
after adding Telerik namespace (Telerik.Web.Mvc.UI) and in web.config and enter stylesheetregistrar and scriptregistrar in Site.Master.
Please help. Many thanks.