Wiki

Clone wiki

aequery / ui / window

aeq.ui.Window

new aeq.ui.Window(obj)

aeq.ui.Window makes it easier to manipulate windows and panels. aeq.ui.Window is a subclass of aeq.ui.Container and share all it's methods.

Methods

show()

.show()

Description: - Start the windows autolayoutManager and shows the window.


hide()

.hide()

Description: - Hides the window. Does nothing when the object is a panel.


layout()

.layout()

obj.layout.layout(true);
obj.layout.resize();
obj.onResizing = obj.onResize = function() {
    this.layout.resize();
};

Updated