class type statics =Inheritsobject..end
Ext_Base.staticsExt_state_Stateful.staticsExt_util_Animate.staticsExt_util_ElementContainer.staticsExt_util_Observable.staticsExt_util_Positionable.staticsExt_util_Renderable.staticsmethod cancelLayout : 'a. 'a Js.t -> unit Js.methCancels layout of a component.
Parameters:
#Ext_Component.t Js.t
method flushLayouts : unit Js.methPerforms all pending layouts that were scheduled while suspendLayouts was in effect.
method resumeLayouts : bool Js.t Js.optdef -> unit Js.methResumes layout activity in the whole framework.
Ext.suspendLayouts is alias of suspendLayouts.
Parameters:
bool Js.t (optional)
true to perform all the pending layouts. This can also be
achieved by calling flushLayouts directly.
method suspendLayouts : unit Js.methStops 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.methUpdates layout of a component.
Parameters:
#Ext_Component.t Js.t
The component to update.
bool Js.t (optional)
true to just queue the layout if this component.