hello
i try load view in kendowindow and it works on development but when deploy project on the server and then open kendowindow with view in content in production on iis, first open empty kendowindow and then as soon as possible whole browser became white and empty, even view content is just a div with short text.
this is my code
var window = $("#" + dialogName).kendoWindow({
content: {
url: "Security/Users",
dataType: "html"
},
title: name,
position: {
top: topOffset,
left:leftOffset
},
//width: 700,
//height: 400,
size: dialogSize,
actions: ["Refresh", "Minimize", "Maximize", "Close"],
animation: {
open: {
effects: "fade:in"
},
close: {
effects: "fade:out"
}
},
modal: false,
close: function (e) {
},
open: function (e) {
e.preventDefault();
closeDrawer();
}
}).open().center();
first and second images are from development environment and everything is ok, third image is from production environment and has bug.