angular-kendo-window

Angular directive to dynamically create Kendo UI windows with a separate template and controller.


Keywords
angular, kendoui, kendo-ui, kendo-window, modal
License
MIT
Install
bower install angular-kendo-window#v1.0.0

Documentation

angular-kendo-window

Please vote for this to be officially supported in Kendo UserVoice

Angular Kendo Window

Angular directive to dynamically create Kendo UI windows with a separate template and controller.

This is highly influenced by UI Bootstrap modal directive.

NPM

https://www.npmjs.com/package/angular-kendo-window
npm i angular-kendo-window

Documentation

Telerik documentation for kendo.ui.window

Example

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 });

Demo

Plunkr demo

Installation

Bower

bower install angular-kendo-window