or
<script>
var app = new kendo.mobile.Application();
function gotoTop() {
$('body').scrollTop();
}
</script>
but it does not seem to work. I am quite new to Kendo, so I appreciate any suggestions or help, thanks!
@(Html.Kendo().ComboBox()
.Name("deps")
.DataTextField("DepName")
.DataValueField("DepID")
.Filter("contains")
.DataSource(source => {
source.Read(read =>
{
read.Action("GetDeps", "Dep");
});
}))