query string issue with Kendo ui window(Every time we open a kendo window the Query string should get Updated Instead it not happening)
Explicit refresh should be performed to update the window url. Otherwise you will not be able to cache the page, for instance. Hence trigger the refresh() method of the window, as you already figured out.
var window = $("#window").data("kendoWindow"); window.refresh(); This helps to solve the above problem