Hi,
I am using the window widget (http://www.dynamicdrive.com/dynamici...ndow/index.htm) but when I minimize more than one window they stack on top of each other. Is there a way to make them minimize in a row?
Ed
Hi,
I am using the window widget (http://www.dynamicdrive.com/dynamici...ndow/index.htm) but when I minimize more than one window they stack on top of each other. Is there a way to make them minimize in a row?
Ed
Sure, try finding the below line in dhtmlwindow.js:
and replacing that with:Code:t.style.top=dhtmlwindow.scroll_top+dhtmlwindow.docheight-(t.handle.offsetHeight*t.minimizeorder)-windowspacing+"px"
Code:t.style.top=dhtmlwindow.scroll_top+dhtmlwindow.docheight-t.handle.offsetHeight-10+"px" t.style.left=dhtmlwindow.scroll_left+windowspacing+(t.handle.offsetHeight*t.minimizeorder)+"px"
Bookmarks