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