or
[{"AddedOn":"\/Date(1333241309627-0400)\/","Batch":"20120331-A","Comment":"Sample","User":"paulm"}]$(function () { var dataSource = new kendo.data.DataSource({ type: 'jsonp', transport: { read: { url: '/api/BatchApi/GetOpenBatchList', dataType: 'jsonp' }, update: { url: '/api/BatchApi/Update', dataType: 'jsonp' }, destroy: { url: '/api/BatchApi/Delete', dataType: 'jsonp' }, create: { url: '/api/BatchApi/Create', dataType: 'jsonp' } }, batch: true, pageSize: 30, schema: { model: { id: "Batch_ID", fields: { Batch_ID: { editable: false, nullable: false }, Batch: { validation: { required: true} }, AddedOn: { type: "date", editable: false }, User: { editable: false }, Comment: { type: "string" } } } } }); $("#batchGrid").kendoGrid({ dataSource: dataSource, scrollable: true, sortable: true, selectable: 'row', toolbar: [{ name: 'create', text: 'New Batch'}], columns: [ { field: "Batch", title: "Batch" }, { field: "AddedOn", title: "Added On" }, { field: "User", title: "User" }, { command: ["edit"], title: " ", width: "100px" } ], editable: "popup" });});$(document).ready(function() {
var dataSource = new kendo.data.DataSource({
type: "jsonp",
transport: {
read: {
url: "<c:url value="/Control?command=ko.sp_getCourses"/>"
}
}
});
$("#autoComplete").kendoAutoComplete({
minLength: 3,
dataTextField: "name", // JSON property name to use
dataSource: dataSource
});
});
kendoConsole is not defined
On clicking a date I get the following:
kendoConsole is not defined
kendoConsole.log("...+ kendo.toString(this.value(), 'd'));
All required js and css files are loaded properly(according to the demo). The calendar appearance is perfect. I notice that in your example/events.html file you reference a "kendo.console.js " file as a src for showing the calendar, that file does not exist in the zipped download. What am I missing or what other info do you need to help me?
------------------------------------------
Edit
I found the "kendo.console.js " file
