1
The company where I work uses the components of Kendo UI and I need to have the window component closed when clicking on k-overley
(window backdrop), this component is configured to have modal behavior.
View my Directive call from the window:
<div kendo-window="ctrl.window" k-options="ctrl.options" k-content="{ url: '/window.html' }"></div>
The options I’m passing on the controller are below:
vm.options = {
modal: true,
};
Thanks for your help.