/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_WindowMgr({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.WindowGroup","uses":[],"html":"
Hierarchy
Ext.WindowGroupExt.WindowMgrFiles
The default global window group that is available automatically. To have more than one group of windows\nwith separate z-order stacks, create additional instances of Ext.WindowGroup as needed.
\nBrings the specified window to the front of any other active windows in this WindowGroup.
\nThe id of the window or a Ext.Window instance
\nTrue if the dialog was brought to the front, else false\nif it was already in front
\nExecutes the specified function once for every window in this WindowGroup, passing each\nwindow as the only parameter. Returning false from the function will stop the iteration.
\nThe function to execute for each item
\nThe scope (this
reference) in which the function is executed. Defaults to the current Window in the iteration.
Gets a registered window by id.
\nThe id of the window or a Ext.Window instance
\nReturns zero or more windows in this WindowGroup using the custom search function passed to this method.\nThe function should accept a single Ext.Window reference as its only argument and should\nreturn true if the window matches the search criteria, otherwise it should return false.
\nThe search function
\nThe scope (this
reference) in which the function is executed. Defaults to the Window being tested.\nthat gets passed to the function if not specified)
An array of zero or more matching windows
\nRegisters a Window with this WindowManager. This should not\nneed to be called under normal circumstances. Windows are automatically registered\nwith a manager at construction time.
\n\n\nWhere this may be useful is moving Windows between two WindowManagers. For example,\nto bring the Ext.MessageBox dialog under the same manager as the Desktop's\nWindowManager in the desktop sample app:
\n\n\nvar msgWin = Ext.MessageBox.getDialog();\nMyDesktop.getDesktop().getManager().register(msgWin);\n\n\n\n\n
The Window to register.
\nSends the specified window to the back of other active windows in this WindowGroup.
\nThe id of the window or a Ext.Window instance
\nThe window
\n