| java.lang.Object com.gwtext.client.core.EventManager
EventManager | public class EventManager (Code) | | Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and
provides several useful events directly.
|
addListener | native public static void addListener(Element element, String eventName, EventCallback cb, ListenerConfig config)(Code) | | Appends an event handler to an element.
Parameters: element - the element Parameters: eventName - the event name Parameters: cb - the callback to execute on event Parameters: config - the listener config |
onDocumentReady | native public static void onDocumentReady(Function cb)(Code) | | Fires when the document is ready (before onload and before images are loaded).
Can alternatively use the GWT entry point mechanism.
Parameters: cb - callback to execute |
|
|