| 
					 Title: window with href not draggable Post by: fguibert on October 07, 2018, 01:17:50 AM Hi 
					I'm facing an issue with easyui-window object. When I try to open an empty window, the window open normally and is draggable : Code: <div id="mypopup" closable="true" draggable="true" class="easyui-window" title="Hello" data-options="modal:false,closed:true,iconCls:'icon-man'" style="width:800px;height:520px;padding:10px;"> but if I add a href attribute on the window to load content with XHR before opening, the window opens with the right content well BUT is no more draggable (closing, mini/maximazing is ok): Code: $('#mypopup).panel({href:'http://localhost/test.php'}); I also try with window's refresh method, but same result : Code: $('#mypopup').window('refresh', 'http://localhost/test.php');what's the matter ? thanks all Title: Re: window with href not draggable Post by: stworthy on October 07, 2018, 05:44:50 AM Please try this code: 
					Code: $('#mypopup').window({href:'http://localhost/test.php'}); Title: Re: window with href not draggable Post by: fguibert on October 07, 2018, 07:42:53 AM it works great, thanks again stworthy ! 
					 |