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

kendoEditor doesnt appear

1 Answer 65 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
The
Top achievements
Rank 1
The asked on 11 Feb 2013, 04:22 PM
Hello!

Here is my code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="kendo_UI.WebForm1" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <link href="~/Styles/kendo/kendo.common.min.css" rel="stylesheet" />
    <link href="~/Styles/kendo/kendo.default.min.css" rel="stylesheet" />
    <script type="text/javascript" src="~/Scripts/jquery-1.9.1.min.js"></script>
    <script type="text/javascript" src="~/Scripts/kendo/kendo.all.min.js"></script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <textarea id="editor" rows="10" cols="30"> </textarea>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#editor").kendoEditor();
            });
        </script>
    </div>
    </form>
</body>
</html>
But textarea appears without kendoEditor :-(

What's wrong?

Thank you!




1 Answer, 1 is accepted

Sort by
0
Dimiter Madjarov
Telerik team
answered on 18 Feb 2013, 04:06 PM
Hello,

 
It looks like that the problem derives from the jQuery version, that is used in the current project. Please keep in mind that Kendo UI requires jQuery version 1.8.2. You can find more detailed information in the Kendo UI JavaScript dependencies page.


All the best,
Dimiter Madjarov
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
General Discussions
Asked by
The
Top achievements
Rank 1
Answers by
Dimiter Madjarov
Telerik team
Share this question
or