This question is locked. New answers and comments are not allowed.
my MVC/razor app using your grid control works fine in Firefox. In IE9 I get the error message:
Line: 1
Error: There is no value for the property "scripts": The object is null or undefined.
(The error message is translated to english by me.)
Looking at the debug window shows me the following code line:
(function(a){var b=a.telerik;b.scripts.push("telerik.grid.reordering.js");b.reordering={};b. ....
This happens for each Telerik script file. After confirming the error messages all works fine.
Here are all references used in my code:
<script src="@Url.Content("~/Scripts/jquery-1.6.4.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/telerik.grid.reordering.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/telerik.grid.resizing.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/telerik.grid.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.corner.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.alerts.js")" type="text/javascript"></script>
How can I avoid the error messages?
Line: 1
Error: There is no value for the property "scripts": The object is null or undefined.
(The error message is translated to english by me.)
Looking at the debug window shows me the following code line:
(function(a){var b=a.telerik;b.scripts.push("telerik.grid.reordering.js");b.reordering={};b. ....
This happens for each Telerik script file. After confirming the error messages all works fine.
Here are all references used in my code:
<script src="@Url.Content("~/Scripts/jquery-1.6.4.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/telerik.grid.reordering.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/telerik.grid.resizing.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/telerik.grid.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.corner.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.alerts.js")" type="text/javascript"></script>
How can I avoid the error messages?