I've got a navigation menu , and under it a workspace. Any button pressed in the menu will open a kendo window in the workspace. I don't want the windows to cover the menu and thus placed the windows with a contain property to workspace div. However I want the windows to be placed anywhere under the menu. I want a scroll bar to appear when the window is being dragged outside of the workspace. I have overflow: scroll set in the workspace div but the windows cannot be dragged beyond the workspace.
I've placed how my window is made.
function onClose(e) {<br> if (confirm("Are you sure? All form data will be lost.") == false)<br> e.preventDefault();<br> else {<br><br> secWindow.data("kendoWindow").destroy();<br> secWindow.remove();<br> }<br> }<br> var formName = event.target.id + "form.aspx"<br> secWindow.kendoWindow({<br> width: "600px",<br> content: formName,<br> title: windowTitle,<br> appendto: '#content' ,<br> draggable: {<br> containment: '#content'<br> },<br> visible: false,<br> actions: [<br> "Pin",<br> "Refresh",<br> "Minimize",<br> "Maximize",<br> "Close"<br> ],<br> close: onClose<br> }).data("kendoWindow");<br> secWindow.data("kendoWindow").center().open();<br> setInterval(function (e) { secWindow.data("kendoWindow").refresh(formName) }, 60000);