I'm using a grid's edit event to modify the title of the popup kendo ui window.
This code worked fine in 2016.1.226, but now in 2017.1.118 it does not. After upgrading, the title now looks disabled and the window acts as if it doesn't have a title bar at all (cannot be dragged, cannot be closed by the X, etc).
function
gridEdit(e) {
if
(e.model.isNew()) {
e.container.kendoWindow(
"title"
,
"Add New User"
);
}
else
{
e.container.kendoWindow(
"title"
,
"Edit User"
);
}
}