When one dialog box, for example, "Iteration 1", is dragged into another dialog box, that is, Release 1 works fine, but adds an unnecessarily scrollable panel to another dialog box, that is, "Release 1". I want to see my dialog box, i.e. 'Iteration 1' in the top left corner.
$(document).ready(function() { $( "#dialogRelease").dialog({ autoOpen: false, modal: false, show: {effect: 'fade', duration: 2000}, hide: "size", resizable:false, draggable:true, height: 360, width: 450, position: [1300,500] }); });
Do I need to change something?
Demo code here [http://jsfiddle.net/coolanuj/7683X/14/]
source share