|
| WindowGroup()
+ | WindowGroup |
| bringToFront( String/Object win )
+ :
+ BooleanBrings the specified window to the front of any other active windows in this WindowGroup. Brings the specified window to the front of any other active windows in this WindowGroup. | WindowGroup |
| each( Function fn , [Object scope ] )
+ :
+ voidExecutes the specified function once for every window in this WindowGroup, passing each
window as the only parameter.... Executes the specified function once for every window in this WindowGroup, passing each
-window as the only parameter. Returning false from the function will stop the iteration. | WindowGroup |
| get( String/Object id )
- :
- Ext.WindowGets a registered window by id. Gets a registered window by id. | WindowGroup |
| getActive()
- :
- Ext.WindowGets the currently-active window in this WindowGroup. Gets the currently-active window in this WindowGroup. Parameters:Returns:Ext.Window The active window
| WindowGroup |
| getBy( Function fn , [Object scope ] )
- :
- ArrayReturns zero or more windows in this WindowGroup using the custom search function passed to this method.
+window as the only parameter. Returning false from the function will stop the iteration. | WindowGroup |
| get( String/Object id )
+ :
+ Ext.WindowGets a registered window by id. Gets a registered window by id. | WindowGroup |
| getActive()
+ :
+ Ext.WindowGets the currently-active window in this WindowGroup. Gets the currently-active window in this WindowGroup. Parameters:Returns:Ext.Window The active window
| WindowGroup |
| getBy( Function fn , [Object scope ] )
+ :
+ ArrayReturns zero or more windows in this WindowGroup using the custom search function passed to this method.
The function... Returns zero or more windows in this WindowGroup using the custom search function passed to this method.
The function should accept a single Ext.Window reference as its only argument and should
return true if the window matches the search criteria, otherwise it should return false. | WindowGroup |
| hideAll()
- :
- voidHides all windows in this WindowGroup. Hides all windows in this WindowGroup. | WindowGroup |
| register( Window win )
- :
- voidRegisters a Window with this WindowManager. This should not
+that gets passed to the function if not specified) Returns: | WindowGroup |
| hideAll()
+ :
+ voidHides all windows in this WindowGroup. Hides all windows in this WindowGroup. | WindowGroup |
| register( Window win )
+ :
+ voidRegisters a Window with this WindowManager. This should not
need to be called under normal circumstances. Windows are... Registers a Window with this WindowManager. This should not
need to be called under normal circumstances. Windows are automatically registered
with a manager at construction time.
@@ -30,11 +30,11 @@ to bring the Ext.MessageBox dialog under the same manager as the Desktop's
WindowManager in the desktop sample app:
var msgWin = Ext.MessageBox.getDialog();
MyDesktop.getDesktop().getManager().register(msgWin);
-
Parameters:win : WindowThe Window to register. Returns: | WindowGroup |
| sendToBack( String/Object win )
- :
- Ext.WindowSends the specified window to the back of other active windows in this WindowGroup. Sends the specified window to the back of other active windows in this WindowGroup. | WindowGroup |
| unregister( Window win )
- :
- voidUnregisters a Window from this WindowManager. This should not
+ Parameters:win : WindowThe Window to register. Returns: | WindowGroup |
| sendToBack( String/Object win )
+ :
+ Ext.WindowSends the specified window to the back of other active windows in this WindowGroup. Sends the specified window to the back of other active windows in this WindowGroup. | WindowGroup |
| unregister( Window win )
+ :
+ voidUnregisters a Window from this WindowManager. This should not
need to be called. Windows are automatically unregister... Unregisters a Window from this WindowManager. This should not
need to be called. Windows are automatically unregistered upon destruction.
See register. | WindowGroup |