Sys.Application.init Event
Raised after all scripts have been loaded but before objects are created.
Sys.Application.add_init(handler); Sys.Application.remove_init(handler);
The following example shows how to add a handler to the init event. The event handler adds two custom controls to the page.
// Attach a handler to the init event. Sys.Application.add_init(applicationInitHandler); function applicationInitHandler() { // Add two custom controls to the application. $create(Demo.HoverButton, {text: 'A HoverButton Control'}, {click: start, hover: doSomethingOnHover, unhover: doSomethingOnUnHover}, null, $get('Button1')); $create(Demo.HighVis, null, null, null, $get('Button2')); }
Show: