SlidePanel.ConsoleToggled

Syntax

ConsoleToggled: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The ConsoleToggled event occurs after the console is collapsed or expanded.

Comments

A console combines the Header and Details panels.

Example

To execute the example, the HTML page must contain the SlidePanel component named slidePanel (see Example of Creating the SlidePanel Component). Add a handler for the ConsoleToggled event:

slidePanel.ConsoleToggled.add(function (sender, args) {

        alert("ConsoleToggled")

});

After executing the example, the message "ConsoleToggled" pops up after collapsing or expanding the console.

See also:

SlidePanel