jQuery UI Widgets › Forums › Dialogs and Notifications › Window › How can i define Window in Window
This topic contains 7 replies, has 4 voices, and was last updated by parascus 10 years, 2 months ago.
-
Author
-
Hello ,
I’m trying define window in window.
thats my code. Whats wrong?
<div id=”jqxWidget”>
<div style=”width: 100%; height: 650px; margin-top: 50px;” id=”mainDemoContainer”>
<div id=”window”>
<div id=”windowHeader”>
<span>
<img src=”../../images/movie.png” alt=”” style=”margin-right: 15px” />Movies
</span>
</div>
<span id=”parametreler”>
<div id=’jqxExpander’>
<div>
Early History of the Internet</div>
<div>
<ul>
<li>1961 First packet-switching papers</li>
<li>1966 Merit Network founded</li>
<li>1966 ARPANET planning starts</li>
<li>1969 ARPANET carries its first packets</li>
<li>1970 Mark I network at NPL (UK)</li>
<li>1970 Network Information Center (NIC)</li>
<li>1971 Merit Network’s packet-switched network operational</li>
<li>1971 Tymnet packet-switched network</li>
<li>1972 Internet Assigned Numbers Authority (IANA) established</li>
<li>1973 CYCLADES network demonstrated</li>
<li>1974 Telenet packet-switched network</li>
<li>1976 X.25 protocol approved</li>
<li>1979 Internet Activities Board (IAB)</li>
<li>1980 USENET news using UUCP</li>
<li>1980 Ethernet standard introduced</li>
<li>1981 BITNET established</li>
</ul>
</div>
</div>
</span>
<div style=”overflow: hidden;” id=”windowContent”>
selam
<div id=”window2″>
<div id=”window2header”>
<span>
<img src=”../../images/movie.png” alt=”” style=”margin-right: 15px” />Movies
</span>
</div>
<div style=”overflow: hidden;” id=”window2content”>
window2 content
</div>
</div>
</div>
</div>
</div>
</div>$(“div[id=’window2′]”).jqxWindow({
showCollapseButton: true, maxHeight: 400, maxWidth: 700, minHeight: 200, minWidth: 200, height: 300, width: 500,
initContent: function () {
//$(‘#window’).jqxWindow(‘focus’);
}
});
$(“div[id=’window’]”).jqxWindow({
showCollapseButton: true, maxHeight: 400, maxWidth: 700, minHeight: 200, minWidth: 200, height: 300, width: 500,
initContent: function () {
//$(‘#window’).jqxWindow(‘focus’);
}
});Hi,
What do you mean by window in window? If you want to show multiple windows, see: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxwindow/multiple-windows.htm?web
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comI mean, multiple windows in a window. I am trying make a group of windows by a window.
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxwindow/defaultfunctionality.htm?web
that window has a tab pages. I am trying define windows instead of a tab page.
Hi,
If you want to create MDI UI like in the old Windows Forms days using jqxWindow, then you will not be able to achieve that. It is not possible to add a window as a child of another window. The Parent Element of each Window is the Document Body element.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comi see, thank you.
Can you add this as a feature – to add a jqWidget window in a new window opened by window.open?
jl
Hi justlooking,
Sorry, but MDI Interface is not much modern these days and we would prefer to implement some of the more requested features like those on our Roadmap page.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comHello to the ones who are interested in MDI,
I’ve seen that in jsfiddle a jqxwindow is hold by an area in jsfiddle. I think there the iframe is used to achieve this. Maybe this is a kind of help for you?
Best Regards,
Stephan
-
AuthorPosts
You must be logged in to reply to this topic.