Java Doc for Ext.java in  » Ajax » gwtext-2.01 » com » gwtext » client » core » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » gwtext 2.01 » com.gwtext.client.core 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.gwtext.client.core.Ext

Ext
public class Ext (Code)
Ext core utilities and functions.




Method Summary
native public static  voiddebugger()
     Utility method to kick up Javascript debugger.
native public static  voiddestroy(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  voiddestroy(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  StringescapeRe(String str)
     Escapes the passed string for use in a regular expression.
native public static  ExtElementfly(String id)
     Gets the globally shared flyweight ExtElement, with the passed node as the active element.
native public static  ExtElementfly(String id, String named)
     Gets the globally shared flyweight ExtElement, with the passed node as the active element.
native public static  ExtElementfly(Element element)
     Gets the globally shared flyweight ExtElement, with the passed node as the active element.
native public static  ExtElementfly(Element element, String named)
     Gets the globally shared flyweight ExtElement, with the passed node as the active element.
native public static  StringgenerateId()
     Generates unique ids.
native public static  StringgenerateId(String prefix)
     Generates unique ids.
native public static  ExtElementget(String id)
     Method to retrieve Element objects.
native public static  ExtElementget(Element element)
     Method to retrieve Element objects.
native public static  ExtElementgetBody()
     Returns the current document body as an ExtElement .
native public static  ExtElementgetDoc()
     Returns the current HTML document object as an ExtElement .
native public static  booleanisAir()
    
native public static  booleanisBorderBox()
    
native public static  booleanisEnableGarbageCollector()
     Returns is Garbage Collector is enabled.
native public static  booleanisEnableListenerCollection()
     Retruns true if listener collection is true.
native public static  booleanisGecko()
    
native public static  booleanisIE()
    
native public static  booleanisIE6()
    
native public static  booleanisIE7()
    
native public static  booleanisLinux()
    
native public static  booleanisMac()
    
native public static  booleanisOpera()
    
native public static  booleanisReady()
    
native public static  booleanisSafari()
    
native public static  booleanisSecure()
    
native public static  booleanisStrict()
    
native public static  booleanisUseShims()
    
native public static  booleanisWindows()
    
native public static  voidonReady(Function cb)
     Fires when the document is ready (before onload and before images are loaded).
native static  voidsetBlankImageUrl(String url)
    
native public static  voidsetEnableGarbageCollector(boolean enableGarbageCollector)
     True to automatically uncache orphaned Ext.Elements periodically (defaults to true).
native public static  voidsetEnableListenerCollection(boolean enableListenerCollection)
     True to automatically purge event listeners after uncaching an element (defaults to false).
native public static  voidsetSslSecureUrl(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  voidsetUseShims(boolean useShims)
     By default, Ext intelligently decides whether floating elements should be shimmed.



Method Detail
debugger
native public static void debugger()(Code)
Utility method to kick up Javascript debugger. Userful during development / troubleshooting where it is desired to step through Javascript code.



destroy
native public static void destroy(ExtElement element)(Code)
Attempts to destroy the objects by removing all event listeners, removing them from the DOM (if applicable) and calling their destroy functions (if available).
Parameters:
  element - the element to destroy



destroy
native public static void destroy(Component component)(Code)
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).
Parameters:
  component - the component to destroy



escapeRe
native public static String escapeRe(String str)(Code)
Escapes the passed string for use in a regular expression.
Parameters:
  str - the String to escape escaped String



fly
native public static ExtElement fly(String id)(Code)
Gets the globally shared flyweight ExtElement, with the passed node as the active element. Do not store a reference to this element - the dom node can be overwritten by other code.
Parameters:
  id - the element ID the ExtElement



fly
native public static ExtElement fly(String id, String named)(Code)
Gets the globally shared flyweight ExtElement, with the passed node as the active element. Do not store a reference to this element - the dom node can be overwritten by other code.
Parameters:
  id - the element ID
Parameters:
  named - allows for creation of named reusable flyweights to prevent conflicts (e.g. internally Ext uses "_internal") the ExtElement



fly
native public static ExtElement fly(Element element)(Code)
Gets the globally shared flyweight ExtElement, with the passed node as the active element. Do not store a reference to this element - the dom node can be overwritten by other code.
Parameters:
  element - the element the ExtElement



fly
native public static ExtElement fly(Element element, String named)(Code)
Gets the globally shared flyweight ExtElement, with the passed node as the active element. Do not store a reference to this element - the dom node can be overwritten by other code.
Parameters:
  element - the element
Parameters:
  named - allows for creation of named reusable flyweights to prevent conflicts (e.g. internally Ext uses "_internal") the ExtElement



generateId
native public static String generateId()(Code)
Generates unique ids. a unique ID



generateId
native public static String generateId(String prefix)(Code)
Generates unique ids.
Parameters:
  prefix - Id prefix (defaults "ext-gen") a unique ID



get
native public static ExtElement get(String id)(Code)
Method to retrieve Element objects. Uses simple caching to consistently return the same object. Automatically fixes if an object was recreated with the same id via AJAX or DOM.
Parameters:
  id - element ID the element



get
native public static ExtElement get(Element element)(Code)
Method to retrieve Element objects. Uses simple caching to consistently return the same object. Automatically fixes if an object was recreated with the same id via AJAX or DOM.
Parameters:
  element - the element the element



getBody
native public static ExtElement getBody()(Code)
Returns the current document body as an ExtElement . the document body



getDoc
native public static ExtElement getDoc()(Code)
Returns the current HTML document object as an ExtElement . the document



isAir
native public static boolean isAir()(Code)
true if running under Adobe AIR



isBorderBox
native public static boolean isBorderBox()(Code)
true if bodex box



isEnableGarbageCollector
native public static boolean isEnableGarbageCollector()(Code)
Returns is Garbage Collector is enabled. true if GC enabled



isEnableListenerCollection
native public static boolean isEnableListenerCollection()(Code)
Retruns true if listener collection is true. true if listener collection is enabled



isGecko
native public static boolean isGecko()(Code)
true if Gecko broswer



isIE
native public static boolean isIE()(Code)
true if IE



isIE6
native public static boolean isIE6()(Code)
true if IE6



isIE7
native public static boolean isIE7()(Code)
true if IE7



isLinux
native public static boolean isLinux()(Code)
true if Linux OS



isMac
native public static boolean isMac()(Code)
true if Mac



isOpera
native public static boolean isOpera()(Code)
true if Opera



isReady
native public static boolean isReady()(Code)
true when the document is fully initialized and ready for action



isSafari
native public static boolean isSafari()(Code)
true if Safari



isSecure
native public static boolean isSecure()(Code)
true if the page is running over SSL



isStrict
native public static boolean isStrict()(Code)
true if the browser is in strict mode



isUseShims
native public static boolean isUseShims()(Code)
true if use shims.



isWindows
native public static boolean isWindows()(Code)
true if Windows OS



onReady
native public static void onReady(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



setBlankImageUrl
native static void setBlankImageUrl(String url)(Code)



setEnableGarbageCollector
native public static void setEnableGarbageCollector(boolean enableGarbageCollector)(Code)
True to automatically uncache orphaned Ext.Elements periodically (defaults to true).
Parameters:
  enableGarbageCollector - true to enable GC



setEnableListenerCollection
native public static void setEnableListenerCollection(boolean enableListenerCollection)(Code)
True to automatically purge event listeners after uncaching an element (defaults to false). Note: this only happens if enableGarbageCollector is true.
Parameters:
  enableListenerCollection - true to enable listener collection



setSslSecureUrl
native public static void setSslSecureUrl(String url)(Code)
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).
Parameters:
  url - the url



setUseShims
native public static void setUseShims(boolean useShims)(Code)
By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash, you may want to set this to true.
Parameters:
  useShims - true to use shims



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.