docs.sencha.comDocs | Sencha Documentation

docs.sencha.com Profile

docs.sencha.com

Maindomain:sencha.com

Title:Docs | Sencha Documentation

Description:Sencha Documentation - API documentation from Sencha

Discover docs.sencha.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

docs.sencha.com Information

Website / Domain: docs.sencha.com
HomePage size:60 KB
Page Load Time:0.03565 Seconds
Website IP Address: 13.35.126.57
Isp Server: Xerox Corporation

docs.sencha.com Ip Information

Ip Country: United States
City Name: Norwalk
Latitude: 41.125736236572
Longitude: -73.44017791748

docs.sencha.com Keywords accounting

Keyword Count

docs.sencha.com Httpheader

Content-Type: text/html
Content-Length: 56957
Connection: keep-alive
Last-Modified: Tue, 04 Feb 2020 22:02:18 GMT
x-amz-version-id: FiFMZO2DyohuCW3nqkA6DsTeb3xW83ut
Server: AmazonS3
Date: Fri, 03 Apr 2020 01:33:33 GMT
ETag: "279d9ab45bd97fb4f2cd2a3e3b40c223"
X-Cache: Hit from cloudfront
Via: 1.1 b37bef2041652ba1d4a26e5e191fdc71.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: SFO5-C1
X-Amz-Cf-Id: QAIVD12CAlBL6DOtEAGvMdIAVATGgc-1xzJP0kx-7NKHIgU0OKBc_g==
Age: 81720

docs.sencha.com Meta Info

charset="utf-8"/
content="width=device-width, initial-scale=1" name="viewport"/
content="IE=Edge" http-equiv="X-UA-Compatible"
content="assets/images/sencha-200.png" property="og:image"
content="Docs | Sencha Documentation " property="og:title"/
content="Sencha Documentation - API documentation from Sencha" property="og:description"/
content="Sencha Documentation" property="og:site_name"/
content="" property="og:url"/
content="Sencha Documentation - API documentation from Sencha" name="description"/

13.35.126.57 Domains

Domain WebSite Title

docs.sencha.com Similar Website

Domain WebSite Title
wiki.finalbuilder.comVSoft Documentation Home - Documentation - VSoft Technologies Documentation Wiki
v20.wiki.optitrack.comOptiTrack Documentation Wiki - NaturalPoint Product Documentation Ver 2.0
documentation.circuitstudio.comCircuitStudio Documentation | Online Documentation for Altium Products
help.logbookpro.comDocumentation - Logbook Pro Desktop - NC Software Documentation
documentation.cpanel.netDeveloper Documentation Home - Developer Documentation - cPanel Documentation
sdk.cpanel.netDeveloper Documentation Home - Developer Documentation - cPanel Documentation
confluence2.cpanel.netDeveloper Documentation Home - Developer Documentation - cPanel Documentation
totaland.comDocumentation Home - Documentation - TotaLand Wiki
docs.whmcs.comDocumentation Home - WHMCS Documentation
docs.roguewave.comDocumentation | Rogue Wave - Documentation
docs.fabfile.orgWelcome to Fabric’s documentation! — Fabric documentation
doc.pypy.orgWelcome to PyPy’s documentation! — PyPy documentation
docs.pentestbox.orgWelcome to the PentestBox documentation! — PentestBox Documentation latest documentation
docs.hylang.orgWelcome to Hy’s documentation hy 0170 documentation
help.pentaho.comDocumentation - Pentaho Documentation

docs.sencha.com Traffic Sources Chart

docs.sencha.com Alexa Rank History Chart

docs.sencha.com aleax

docs.sencha.com Html To Plain Text

'); } if (DocsApp.meta.hasGuides) { document.write(''); } if (DocsApp.meta.hasApi) { document.write(''); } ExtReact Docs Help Contents Introduction Terms, Icons, and Labels Access Levels Member Types Member Syntax Member Flags Class Icons Member Icons Navigation and Features Class Member Quick-Nav Menu Getter and Setter Methods History Bar Search and Filters API Doc Class Metadata Expanding and Collapsing Examples and Class Members Desktop -vs- Mobile View Viewing the Class Source Introduction The documentation for the ExtReact product diverges somewhat from the documentation of other Sencha products. The sections below describe documentation for all products except where indicated as unique to ExtReact . Terms, Icons, and Labels Many classes have shortcut names used when creating (instantiating) a class with a configuration object. The shortcut name is referred to as an alias (or xtype if the class extends Ext.Component). The alias/xtype is listed next to the class name of applicable classes for quick reference. ExtReact component classes list the configurable name prominently at the top of the API class doc followed by the fully-qualified class name. Access Levels Framework classes or their members may be specified as private or protected . Else, the class / member is public . Public , protected , and private are access descriptors used to convey how and when the class or class member should be used. Public classes and class members are available for use by any other class or application code and may be relied upon as a stable and persistent within major product versions. Public classes and members may safely be extended via a subclass. Protected class members are stable public members intended to be used by the owning class or its subclasses. Protected members may safely be extended via a subclass. Private classes and class members are used internally by the framework and are not intended to be used by application developers. Private classes and members may change or be omitted from the framework at any time without notice and should not be relied upon in application logic. Member Types Config - The configuration options for a class. ExtReact component classes display configuration options as props Property - Set once a class is instantiated. *See Read Only below. ExtReact component classes do not list properties as a dedicated member type, but rather as read only props Method - Actions that can be performed by a class. Methods should be read as instance methods and can only be called from a instance of a given class. Static methods that can be called directly from the class itself will have a static label next to the method name. *See Static below. Event - Events are specific to the framework event system allowing for classes to programmatically raise an event to be handled by one or more event handler methods. DOM events, while handled by the framework event system, are not specifically described within the API documentation. *For DOM events refer to the event reference page from MDN. Theme Variable - Variables used by the visual theme engine employed by the framework. Theme Mixin - Functions used by the visual theme engine employed by the framework and may use values set in various Theme Variables. Member Syntax Below is an example class member that we can disect to show the syntax of a class member (the lookupComponent method as viewed from the Ext.button.Button class in this case). Ext.container.Container view source lookup Component ( item ) : Ext.Component protected Called when a raw config object is added to this container either during initialization of the items config, or when new items are added), or {@link #insert inserted . This method converts the passed object into an instanced child component. This may be overridden in subclasses when special processing needs to be applied to child creation. Parameters item : Object The config object being added. Returns Ext.Component The component to be added. Let's look at each part of the member row: Expand/Collapse - On the left-hand size of the member row is a control used to expand and collapse each member row to show / hide member details. Member Name - The name of the class member ( lookupComponent in this example) Method Param - Any required or optional params used by a method (or passed to an event handler method) will be listed next to the method name within parenthesis ( ( item ) in this example) Return type - The class instance or javascript object returned by the method or property ( Ext.Component in this case). This may be omitted for methods that do not return anything other than undefined or may display as multiple possible values separated by a forward slash / signifying that what is returned may depend on the results of the method call (i.e. a method may return a Component if a get method calls is successful or false if unsuccessful which would be displayed as Ext.Component/Boolean ). Flags - Any flags applicable to the member will be displayed next ( PROTECTED in this example - see the Flags section below) Member Origin - On the right-hand side of the member row is the class where the member was initially described ( Ext.container.Container in this example). The source class will be displayed as a blue link if the member originates from the current class and gray if it is inherited from an ancestor or mixed-in class. Member Source - On the right-hand side below the member origin class is a link to view the member's source ( view source in the example) Params List - Each param for a class method will be listed using the same name found above in parenthesis, the type of class or object expected, and a description of the param ( item : Object in the example). Returns - If a class returns a value other than undefined a "Returns" section will note the type of class or object returned and a description ( Ext.Component in the example) Since ( not shown in the example ) - Some members will show which version of the product the member was first introduced (i.e. Available since 3.4.0 - not pictured in the example ) just after the member description Default ( not shown in the example ) - Configs often show the default config value to be applied to a class instance if not overridden (i.e. Defaults to: false ) Member Flags The API documentation uses a number of flags to further commnicate the class member's function and intent. The label may be represented by a text label, an abbreviation, or an icon. Required - Required config when instantiating a class Bindable - The config has a setter which allows this config to be set via ViewModel binding All ExtReact props are bindable unless decorated as immutable Immutable Immutable ExtReact props may not be use as a configurable prop when instantiating a component Read Only - The property may be read, but cannot be used to configure / re-configure a class instance at runtime Singleton - Singleton classes are instantiated immediately once defined and may not be instantiated manually Static - A static method or property is a method or property belonging to the class itself, not an instance of the class Chainable - Refers to methods that return the class instance back when called. This enables chained method calls like: classInstance.method1().method2().etc(); Deprecated - A class or member that is scheduled for removal in a future framework version and is provided in the current version for backwards compatibility. Deprecated classes and members will have a message directing you to the preferred class / method going forward. Removed - A removed class or member that exists in documentation only as a reference for users upgrading between framework versions Template - A method defined within a base class designed to be overridden by subclasses Abstract - A class or member may be be defined as abstract. Abstract classes and members establish a class structure and provide limited, if any, code. Class-specific code will be furnished via overrides in sub...

docs.sencha.com Whois

"domain_name": "SENCHA.COM", "registrar": "GoDaddy.com, LLC", "whois_server": "whois.godaddy.com", "referral_url": null, "updated_date": [ "2019-12-08 09:45:32", "2019-11-07 19:47:35" ], "creation_date": "2001-11-07 08:40:27", "expiration_date": "2021-11-07 08:40:27", "name_servers": [ "LEE.NS.CLOUDFLARE.COM", "SANDY.NS.CLOUDFLARE.COM" ], "status": [ "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientRenewProhibited https://icann.org/epp#clientRenewProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", "clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited", "clientUpdateProhibited http://www.icann.org/epp#clientUpdateProhibited", "clientRenewProhibited http://www.icann.org/epp#clientRenewProhibited", "clientDeleteProhibited http://www.icann.org/epp#clientDeleteProhibited" ], "emails": "abuse@godaddy.com", "dnssec": "unsigned", "name": null, "org": "Sencha Inc", "address": null, "city": null, "state": "Texas", "zipcode": null, "country": "US"