Hi,
I am opening a window on clicking a button but at the same time i want the background to be inactive/blur/hidden, such that user should not be able to click anywhere but the window.
for ex: -(attached a picture in attachment)
<script>
function putOnHoldPopup(requestId) {
debugger;
$("#window").html(' <textarea id="txtArea" style="margin: 0px; height: 95px; width: 517px;resize:none;" watermark-text="Enter your comments here......"></textarea ><button>Save</button>');
var myWindow = $("#window");
myWindow.kendoWindow({
width: "600px",
height: "300px",
title: "Provide a valid reason to put the request on hold",
visible: false,
actions: [
"Minimize",
"Close"
],
}).data("kendoWindow").center().open();
$("#example").css("overflow", "hidden");
}
</script>
here i am trying to hide the background but it is not happening.Any other way to hide the background.Please help.
Thanks
Manish Tiwari