or
@(Html.Kendo().Grid<*what do I put here?*>() .Name("grid") .DataSource(dataSource => dataSource // Configure the grid data source .Ajax() // Specify that ajax binding is used .Read(read => read.Action(...) ) ...more configs...)01.@(Html.Kendo().MultiSelect()02. .Name("myCombo")03. .DataTextField("Text")04. .DataValueField("Value")05. .AutoBind(false)06. .DataSource(source =>07. {08. source.Read(read =>09. {10. read.Action("_SearchAction", "Controller");11. })12. .ServerFiltering(true);13. })14.)