Expanded: function (sender, args);
sender. Event source.
args. Event information.
The Expanded event occurs after window expanding.
The window is expanded if it is fully shown in the page.
Window expanding occurs on clicking the button.
To execute the example, the HTML page must contain the Window component named win (see Example of Creating the Window Component). Add a handler for the Expanded event:
win.Expanded.add(function(sender, args){
win.setContent("Is Expanded")
});
After executing the example on expanding the window new content is set for it: Is Expanded.
See also: