When I use kendo ui I have usual practice to set display:none attribute to kendo ui control and later in $(document).ready(function () I go $("#date").show(); for ex.
This makes page looks better as user do not see controls before it was enhanced by kendo.
Now with Kendo Ui Core this trick doest work. For ex I set
.HtmlAttributes(new { style = "display:none;" })
and control is invisible but
$(document).ready(function () {
alert('');
$("#date").show();
});