html:
<div id="dialog" title="Past Issues">
</div>
Jquery:
$( "#dialog" ).dialog({
height: 900,
width:1200,
modal: true,
});
Currently facing an issue where the dialog can be dragged outside of the window area by a few additional cm. Is there a way to confine the dialog within the window? Or does the default setting already restrict it to the window? If so, what could be causing this problem? Thank you.