Kendo UIの使用を開始し、このチュートリアルを実行して基本を学びました。VisualStudio202でMVCWebアプリケーションプロジェクト用の新しいKendoUIを作成し、学んだことをテストすることにしました。グリッドを次のように配置しようとしました。チュートリアルですが、実行できませんでした。
私が言いたいのは、プロジェクトにはすでにjsファイルを含む剣道フォルダーがあるため、剣道の機能が認識されていないということです。
ビューは次のようになります。
<!DOCTYPE html>
<html>
<head >
<link href="Content/kendo/2012.2.710/kendo.common.min.css" rel="stylesheet" type="text/css" />
<link href="Content/kendo/2012.2.710/kendo.default.min.css" rel="stylesheet" type="text/css" />
<title><%: ViewBag.Title %></title>
</head>
<body>
<h1><%: ViewBag.GestionTitle %></h1>
<div id="tweetGrid"></div>
<script src="Scripts/jquery-1.8.2.min.js"></script>
<script src="Scripts/kendo/2012.2.710/kendo.web.min.js"></script>
<script>
$(function () {
var ds = new kendo.data.DataSource({
transport: {
read: {
url: "http://search.twitter.com/search.json?q=kendoui",
dataType: "jsonp"
}
},
schema: {
data: "results"
}
});
$("#tweetGrid").kendoGrid({
columns: ["from_user", "from_user_name", "text"],
dataSource: ds
});
});
</script>
</body>
</html>
スクリプトを頭の中や体の中に入れてみましたが、剣道の機能がうまくいきません。私は何が欠けていますか?