Class type Ext_AbstractComponent.statics


class type statics = object .. end
Inherits
method cancelLayout : 'a. 'a Js.t -> unit Js.meth

Cancels layout of a component.

Parameters:


method flushLayouts : unit Js.meth

Performs all pending layouts that were scheduled while suspendLayouts was in effect.


method resumeLayouts : bool Js.t Js.optdef -> unit Js.meth

Resumes layout activity in the whole framework.

Ext.suspendLayouts is alias of suspendLayouts.

Parameters:


method suspendLayouts : unit Js.meth

Stops layouts from happening in the whole framework.

It's useful to suspend the layout activity while updating multiple components and containers:

Ext.suspendLayouts();
// batch of updates...
Ext.resumeLayouts(true);

Ext.suspendLayouts is alias of suspendLayouts.

See also Ext.batchLayouts for more abstract way of doing this.


method updateLayout : 'b. 'b Js.t -> bool Js.t Js.optdef -> unit Js.meth

Updates layout of a component.

Parameters: