KendoUI version v2014.2.926
I am trying to modify an html element after a view is shown.
So, I do this:
var view = new kendo.View(
templateId, {
model: viewModel,
show: function() {
handleRenderDone();
}
}
);
In my handleRenderDone function, I can tell that the html has not been rendered yet. Do I misunderstand what the show event is for as described in the doc here:
http://docs.telerik.com/kendo-ui/api/javascript/view#events-show
Thanks