I'm new to Typescript but we were hoping to implement it in our new project. I'm having trouble just getting a simple grid to work. I have set up references to jquery and the kendo.all.d.ts files. KendoGrid shows up in my Intellisense but when I attempt to load the page I'm recieving and error of undefined isn't a function when it hits the kendoGrid function. Could it be something conflicting with jquery versions?
Here is my code.
/// <reference path="jquery.d.ts" />
/// <reference path="kendo.all.d.ts" />
$(document).ready(function () {
$("#grid").kendoGrid({
height: 550,
sortable: true
});
});
Thanks,
Here is my code.
/// <reference path="jquery.d.ts" />
/// <reference path="kendo.all.d.ts" />
$(document).ready(function () {
$("#grid").kendoGrid({
height: 550,
sortable: true
});
});
Thanks,