I'm trying to implement the Kendo editor. It was working great until I tried to add in the file upload feature. I've stripped out all the kendo files and re added to make sure I had the latest version including the dll. This is my _Layout header...
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title</title>
<link id="size-stylesheet" rel="stylesheet" type="text/css" href="~/Content/HighRes.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
@Styles.Render("~/Content/kendo/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo")
</head>
I feel like this is just a boneheaded error. Any idea what i'm doing wrong....?
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title</title>
<link id="size-stylesheet" rel="stylesheet" type="text/css" href="~/Content/HighRes.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
@Styles.Render("~/Content/kendo/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo")
</head>
I feel like this is just a boneheaded error. Any idea what i'm doing wrong....?