Breakdown of what I'm attempting to do:
I'm trying to bind a Kendo grid to my ViewModel and simply display the id, Name, City, and State along with a button to delete (one button per row).
I would like the delete button to fire off the 'Delete' in my controller.
I've installed the KendoUIWeb via NuGet and was wondering how it's used.
I see Intellisense is working when I type something in my view like:
From the example that I've found online and in the demos listed on this site it doesn't look like Kendo is following that format.
If I throw a grid in my view as show in the examples:
I can see the grid on the page but in VisualStudio 2012 I'm getting no Intellisense support for Kendo. I've worked with the old Telerik MVC grid and got used to it but Kendo seems foreign at this point.
I'm trying to bind a Kendo grid to my ViewModel and simply display the id, Name, City, and State along with a button to delete (one button per row).
I would like the delete button to fire off the 'Delete' in my controller.
I've installed the KendoUIWeb via NuGet and was wondering how it's used.
I see Intellisense is working when I type something in my view like:
@Html.Kendo().Grid()
From the example that I've found online and in the demos listed on this site it doesn't look like Kendo is following that format.
If I throw a grid in my view as show in the examples:
<
div
id
=
"grid"
></
div
>
<
script
>
$("#grid").kendoGrid({
columns: [ { title: "Id" },
{ title: "Name" },
{ title: "City" },
{ title: "State" }]
});
</
script
>