Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.81 KB

README.md

File metadata and controls

50 lines (41 loc) · 1.81 KB

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

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

Installation

Bower

bower install angular-kendo-window