Method Summary |
|
native public static void | debugger() Utility method to kick up Javascript debugger. |
native public static void | destroy(ExtElement element) Attempts to destroy the objects by removing all event listeners, removing them from the DOM (if applicable) and calling their destroy functions (if available). |
native public static void | destroy(Component component) Attempts to destroy the component passed to it by removing all event listeners, removing them from the DOM (if applicable) and calling their destroy functions (if available). |
native public static String | escapeRe(String str) Escapes the passed string for use in a regular expression. |
native public static ExtElement | fly(String id) Gets the globally shared flyweight ExtElement, with the passed node as the active element. |
native public static ExtElement | fly(String id, String named) Gets the globally shared flyweight ExtElement, with the passed node as the active element. |
native public static ExtElement | fly(Element element) Gets the globally shared flyweight ExtElement, with the passed node as the active element. |
native public static ExtElement | fly(Element element, String named) Gets the globally shared flyweight ExtElement, with the passed node as the active element. |
native public static String | generateId() Generates unique ids. |
native public static String | generateId(String prefix) Generates unique ids. |
native public static ExtElement | get(String id) Method to retrieve Element objects. |
native public static ExtElement | get(Element element) Method to retrieve Element objects. |
native public static ExtElement | getBody() Returns the current document body as an
ExtElement . |
native public static ExtElement | getDoc() Returns the current HTML document object as an
ExtElement . |
native public static boolean | isAir() |
native public static boolean | isBorderBox() |
native public static boolean | isEnableGarbageCollector() Returns is Garbage Collector is enabled. |
native public static boolean | isEnableListenerCollection() Retruns true if listener collection is true. |
native public static boolean | isGecko() |
native public static boolean | isIE() |
native public static boolean | isIE6() |
native public static boolean | isIE7() |
native public static boolean | isLinux() |
native public static boolean | isMac() |
native public static boolean | isOpera() |
native public static boolean | isReady() |
native public static boolean | isSafari() |
native public static boolean | isSecure() |
native public static boolean | isStrict() |
native public static boolean | isUseShims() |
native public static boolean | isWindows() |
native public static void | onReady(Function cb) Fires when the document is ready (before onload and before images are loaded). |
native static void | setBlankImageUrl(String url) |
native public static void | setEnableGarbageCollector(boolean enableGarbageCollector) True to automatically uncache orphaned Ext.Elements periodically (defaults to true). |
native public static void | setEnableListenerCollection(boolean enableListenerCollection) True to automatically purge event listeners after uncaching an element (defaults to false). |
native public static void | setSslSecureUrl(String url) URL to a blank file used by Ext when in secure mode for iframe src and onReady src to prevent the IE insecure content
warning (defaults to javascript:false). |
native public static void | setUseShims(boolean useShims) By default, Ext intelligently decides whether floating elements should be shimmed. |