ConsoleToggled: function (sender, args);
sender. Event source.
args. Event information.
The ConsoleToggled event occurs after the console is collapsed or expanded.
A console combines the Header and Details panels.
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: