or
<html><head> <title>Test Kendo</title> <!--In the header of your page, paste the following for Kendo styles--> <link href="../js/kendo.common.min.css" rel="stylesheet" type="text/css" /> <link href="../js/kendo.kendo.min.css" rel="stylesheet" type="text/css" /> <!--Then paste the following for Kendo scripts --> <script type="text/javascript" src="jquery-1.2.6.min.js"></script> <script type="text/javascript" src="js/kendo.all.min.js"></script></head><body> <div id="grid"> </div> <script type="text/javascript"> $("#grid").kendoGrid({ columns: [{ field: "FirstName", title: "First Name" }, { field: "LastName", title: "Last Name"}], dataSource: { data: [{ FirstName: "Joe", LastName: "Smith" }, { FirstName: "Jane", LastName: "Smith"}]} }); </script></body></html>
<script id="popup_editor" type="text/x-kendo-template">... <input name="test" id="test"> ...</script> <script> $(document).ready(function () { $("#test").kendoAutoComplete({ dataSource: data, filter: "startswith", placeholder: "Select country...", separator: ", " });</script><input id="EventDate" type="text" value="24/08/2012" name="EventDate" >$("#EventDate").kendoDatePicker({format: "D"})$("#EventDate").kendoDatePicker({
format: "D",
value: new Date($("#EventDateEnd").val()) });