or
<div data-bind="kendoGrid: { data: items, columns: [ {width: 90, title: 'Action', command: { text: 'Edit', click: editItem}}, {field: 'Name',title: 'Name'}]"/>editItem = function (item) { location.href = 'Item/Edit/' + item.Id;}<li> @Html.LabelFor(m => m.UserRole) @Html.Kendo().DropDownListFor(m => m.UserRole).BindTo(Model.UserRoles).AutoBind(true).SelectedIndex(0) </li>TypeError: jQuery("#UserRole").kendoDropDownList is not a function
<li><label for="UserRole">User role</label><input id="UserRole" type="text" name="UserRole" data-val-required="The User role field is required." data-val="true"><script>jQuery(function(){jQuery("#UserRole").kendoDropDownList({"dataSource":["Agency","Artist","Venue"],"autoBind":true,"index":0});});</script></li><li> @Html.LabelFor(m => m.UserRole) @Html.Kendo().ComboBoxFor(m => m.UserRole).BindTo(Model.UserRoles).AutoBind(true).SelectedIndex(0).Suggest(true) </li>
<div id="footer" data-role="footer">
<div data-role="tabstrip">
<a href="#tabstrip-home" data-icon="home">Posts</a>
<a href="Test.html" data-icon="action">Activities</a>
</div><ul id="log"> </ul>
</div>$('#log').prepend('blablabla');