Application Framework Reference

Module API

show()

The show() method makes the current module visible and sets the visibility mode.

Synopsis

show( invisibilityMode )

Parameters

invisibilityMode

String

Invisibility mode string. If a mode is not specified, the mode is set to "global."

Return Value

Undefined

Example

showDescendants: function(invisibilityMode) {
    if (!this.isSwitcherLeaf) {
        for (var i=0; i<this._children.length;i++) {
            this._children[i].show(invisibilityMode);
            this._children[i].showDescendants(invisibilityMode);
        }  
    }  
},
 

See Also

hide()
hideDescendants()
showDescendants()