Kendo UI Starter Template
An empty fiddle with the latest Kendo UI CSS and JS references.
by Neeraj
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.default.min.css">
<script src="http://cdn.kendostatic.com/2014.1.318/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.rtl.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.dataviz.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.dataviz.default.min.css">
<select data-role="dropdownlist" data-bind="source: dropDownData"></select>
<div id="log" class="log"></div>
CSS
.log {
background-color: #eee;
margin: 20px 0;
}
JavaScript
(function () {
var log = (function (el) {
return function (text) {
el.html(el.html() + '<br/>' + text);
};
})($('#log'));
var viewModel = kendo.observable({
dropDownData: ['KendoUI is loaded!']
});
log('example log message');
kendo.bind('body', viewModel);
})()