or

This is a great place for MVC 3 newbies to learn to use the KendoUI toolkit.
Download includes Visual Studio 2010 Solution plus KendoUI Web - AutoComplete Help file.
Note: The contents of the file were entirely created by myself, and are independent of Telerik.
To get AutoComplete.zip, https://www.mediafire.com/?7ke2r42yv4z0i05
You will see advertisements during the short download.

<div id="expensegrid"></div><script type="text/javascript"> $(function () { $("#expensegrid").kendoGrid({ dataSource: { serverPaging: false, serverSorting: true, pageSize: 10, transport: { read: { url: '@Url.Action("ExpenseListJson","Expense")', dataType: 'json' } }, error: function (e) { alert(e); } }, height: 250, sortable: true, pageable: true, columns: ["CategoryName", "VendorName", "Amount"] }); });</script>