or
It is found that when using a custom editor (in my case a Kendo dropdown menu), the dirty flag sometimes disappears even though the cell and model are still considered 'dirty'.
This behavor is reproducible using your demo (http://demos.kendoui.com/web/grid/editing-custom.html). Follow the steps to view the error:
The dirty flag in the cell is now gone. The same behavor is happening with my implementation even though I have not saved the current grid. If you press "Cancel", the value is returned to the original.
Please advise.
<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"); }); }))