Please vote for this to be officially supported in Kendo UserVoice
Angular directive to dynamically create Kendo UI windows with a separate template and controller.
This is highly influenced by UI Bootstrap modal directive.
var windowInstance = $kWindow.open({ options:{ modal: true, title: "Window title", height: 150, width: 400, visible: false }, templateUrl: 'modal1.html', controller: 'modalController', resolve: { parameter1: function () { return "Test..."; } } }); windowInstance.result.then(function (result) { // Here you can get result from the window });
bower install angular-kendo-window