Class Ext.WindowGroup
|
Package:
|
Ext.grid
|
|
Defined In:
|
.js
|
|
Class:
|
|
|
Extends:
|
Object
|
此对象代表一组Ext.Window的实例并提供z-order的管理和window激活的行为。
@
配置项
这个类没有配置项。
公告属性
|
属性
|
定义者
|
|
|
zseed: Number z-index的值
windows的初始z-idnex(缺省为9000)
windows的初始z-idnex(缺省为9000)
|
WindowGroup
|
公共方法
| |
get
(
String/Object id
)
: Ext.Window
Gets a registered window by id. 返回指...
Gets a registered window by id. 返回指定id的window。
参数项:
id : String/Object
window的id或Ext.Window实例。
返回:
|
WindowGroup
|
| |
bringToFront
(
String/Object win
)
: Boolean
Brings the specified window to the ...
Brings the specified window to the front of any other active windows. 将指定的window居于其它活动的window前面。
参数项:
win : String/Object
window的id或Ext.Window实例。
返回:
Boolean True表示为对话框成功居前,else则本身已是在前面。
|
WindowGroup
|
| |
sendToBack
(
String/Object win
)
: Ext.Window
Sends the specified window to the b...
Sends the specified window to the back of other active windows. 将指定的window居于其它活动的window后面。
参数项:
win : String/Object
window的id或Ext.Window实例。
返回:
|
WindowGroup
|
| |
hideAll
(
)
|
WindowGroup
|
| |
getActive
(
)
: Ext.Window
Gets the currently-active window in...
Gets the currently-active window in the group. 返回组内的当前活动的window
|
WindowGroup
|
| |
getBy
(
Function fn,
[Object scope]
)
: Array
传入一个制定的搜索函数到该方法内,返回组内的零个或多个windows。...
传入一个制定的搜索函数到该方法内,返回组内的零个或多个windows。 函数一般会接收{@link Ext.Window}的引用作为其唯一的函数,若window符合搜索的标准及返回true, 否则应返回false.
|
WindowGroup
|
| |
each
(
Function fn,
[Object scope]
)
在组内的每一个window上执行指定的函数,传入window自身作为唯...
在组内的每一个window上执行指定的函数,传入window自身作为唯一的参数。若函数返回false即停止迭代。
参数项:
fn : Function
每一项都会执行的函数
scope : Object
(可选的)执行函数的作用域
返回:
|
WindowGroup
|
公告事件
这个类没公共的事件。