Source Code of Ext JS Examples - extjs

I saw some examples from a JavaScript library: Ext JS i.e.:
http://dev.sencha.com/deploy/ext-4.0.0/examples/feed-viewer/feed-viewer.html
I have some knowledge about JQuery developed some applications. How can I get sources of that examples to try them myself and what should I download to run them?

They are in the extjs package /ext-4.0.2a/examples/key-feed-viewer.
Download link:
http://www.sencha.com/products/extjs/download/ext-js-4.0.2/204
UPDATE.
Newest versions of Ext js for download are:
For Extjs version 4.2.0 you can download it here
Ext js 5 can download it here ( Ext js 5 has a trial period )

Related

Ext js front-end project as a module - how start?

In the future I will create a only front-end project of Ext JS 6. This project must be created like a module (something like plugin), because this project could be integrated with anothers projects in Sencha. What is the best solution for start with this conception? Thanks

Version of Ext JS used by AEM 6.1

Which version of Ext JS library does AEM 6.1 use? Is there a direct way/console to find this out?
It uses v3.4.0 of ExtJS on top of which the AEM Widget Library is built. You can find the details at /libs/cq/ui/widgets/source/ext/release-notes.html
The following Note is also available at https://docs.adobe.com/docs/en/aem/6-1/develop/components/widgets.html
Adobe Experience Manager is built upon ExtJS 3.4.0.

How do I include the Extjs 5.1 features to the Eclipse?

I am trying add Extjs plugin to eclipse. But it was not working. Can anyone help me how can I include Ext js features to eclipse.

Sencha Ext JS in a Chrome App?

I'm using the latest version of Sencha Ext JS, version 4.2.2. I would like to build a Chrome App without using a sandbox frame as documented in Build Apps with Sencha Ext JS. Is there a patch/fork available to make Ext JS work in this more secure environment?
Just doing the Hello World with ext-dev.js from ext-4.2.2-commercial.zip, I get these errors.

How to know the version of sencha from the code

I got an existing old application and I am trying to customize the same. Since it is an old application built in Ext JS/Sencha, the version of Ext js i see from my web console is 1.1.1.
Ext.version gives 1.1.1 as the result. So how will i know which version of sencha it is ? like sencha 2.3.1 is the latest.
I am new to sencha and hence i am not sure about how to check the version and also how the Ext js version is related to sencha version.
I hope the latest Extjs version is 4.x series and sencha is 2.3.1.
So for my existing application , Ext js version is 1.1.1 and i need to know the sencha version of the same.
Please help.
Sencha is the company behind ExtJS and Sencha Touch. There is no version number for sencha.
If you are working with ExtJS (the desktop framework) the latest version is 4.2.2 and for Sencha Touch (the mobile version of the framework) the latest version is 2.3.1.
The latest version numbers are availible here: http://docs.sencha.com
Ext.version
is always the right attempt to get the version number, no matter if Sencha touch or ExtJS.
For the core you can try the following from the JS console:
Ext.versions.core.version
For other components just replace the word "core" in the previous command with the component name. e.g to get the "extjs" version you would type :
Ext.versions.extjs.version

Resources