or
.ClientRowTemplate("<tr>" +
"<td >" +
"${ FirstName} " +
"</td>" +
"<td> " +
"${ LastName} " +
" </td>" +
"</tr>" +
"${optionalNotes(Notes)}")function optionalNotes(t) { if (t.length > 0) { return "<tr><td colspan='2'>" + t + "</td></tr>"; } else { return ""; }}var Person = kendo.data.Model.define( { id: "personId", // the identifier of the model fields: { "name": { type: "string" }, "age": { type: "number" } }});var person = new Person( { name: "John Doe", age: 42});function addPerson(person) { $.ajax({ url: "/Person/Add/" });}[AcceptVerbs(HttpVerbs.Post)]public ActionResult Add([DataSourceRequest] DataSourceRequest request, Person person){ // Code to add person to database.}$('#element').data('kendoPanelBar').dataSource; // undefined

@model IEnumerable<Mvc3App.Models.Employee>@{ ViewBag.Title = "Index";}<script type="text/javascript"> $(document).ready(function () { alert('stopped'); $("#kjsimpleGrid").kendoGrid({ groupable: true, scrollable: true, sortable: true, pageable: true }); });</script><p> @Html.ActionLink("Add", "Create")</p><table id="kjsimpleGrid"> <thead> <tr> <th></th> <th>Id</th> <th>Last</th> <th>First</th> <th>Title</th> <th>City</th> <th>Region</th> <th></th> </tr> </thead> <tbody>@foreach (var item in Model) { <tr> <td> @Html.ActionLink("Edit", "Edit", new { id=item.EmployeeID }) | @Html.ActionLink("Details", "Details", new { id=item.EmployeeID }) </td> <td>@Html.DisplayFor(modelItem => item.EmployeeID)</td> <td>@Html.DisplayFor(modelItem => item.LastName)</td> <td>@Html.DisplayFor(modelItem => item.FirstName)</td> <td>@Html.DisplayFor(modelItem => item.Title)</td> <td>@Html.DisplayFor(modelItem => item.City)</td> <td>@Html.DisplayFor(modelItem => item.Region)</td> <td>@Html.ActionLink("Delete", "Delete", new { id=item.EmployeeID })</td> </tr>} </tbody></table>