Module Ext_LoadMask


module Ext_LoadMask: sig .. end
A modal, floating Component which may be shown abo ...

A modal, floating Component which may be shown above a specified Component while loading data. When shown, the configured owning Component will be covered with a modality mask, and the LoadMask's msg will be displayed centered, accompanied by a spinner image.

If the store config option is specified, the masking will be automatically shown and then hidden synchronized with the Store's loading process.

Because this is a floating Component, its z-index will be managed by the global ZIndexManager object, and upon show, it will place itsef at the top of the hierarchy.

Example usage:

// Basic mask:
var myMask = new Ext.LoadMask(myPanel, {msg:"Please wait..."});
myMask.show();


class type t = object .. end
class type configs = object .. end
class type events = object .. end
class type statics = object .. end
val of_configs : configs Js.t -> t Js.t
of_configs c casts a config object c to an instance of class t
val to_configs : t Js.t -> configs Js.t
to_configs o casts instance o of class t to a config object