Provides a shortcut to the addHandlers method of the Sys.UI.DomEvent class. This member is static and can be invoked without creating an instance of the class.
The DOM element that exposes the event.
A dictionary of events and their handlers.
(Optional) The object instance that is the context for the delegates that should be created from the handlers.
(Optional) A boolean value that determines whether the handler should be removed automatically when the element is disposed.
Provides a shortcut to the clearHandlers method of the Sys.UI.DomEvent class. This member is static and can be invoked without creating an instance of the class. For details about the method that this shortcut represents, see Sys.UI.DomEvent clearHandlers Method.
Creates and initializes a component of the specified type. This method is static and can be called without creating an instance of the class.
The type of the component to create.
(Optional) A JSON object that describes the properties and their values.
(Optional) A JSON object that describes the events and their handlers.
(Optional) A JSON object that describes the properties that are references to other components.
(Optional) The DOM element that the component should be attached to.
A new instance of a component that uses the specified parameters.
Returns the specified Component object. This member is static and can be invoked without creating an instance of the class.
A string that contains the ID of the component to find.
(Optional) The component or element that contains the component to find.
A Component object that contains the component requested by ID, if found; otherwise, null.
Returns the specified Component object. This member is static and can be invoked without creating an instance of the class.
A string that contains the ID of the component to find.
(Optional) The component or element that contains the component to find.
A Component object that contains the component requested by ID, if found; otherwise, null.
Provides a shortcut to the getElementById method of the Sys.UI.DomElement class. This member is static and can be invoked without creating an instance of the class.
The ID of the DOM element to find.
any
The Sys.UI.DomElement
HTMLElement
Provides a shortcut to the removeHandler method of the Sys.UI.DomEvent class. This member is static and can be invoked without creating an instance of the class.
The DOM element that exposes the event.
The name of the DOM event.
The event handler to remove.