Ext

IDEs, plugins and tools for Ext JS 2.0

February 1, 2008 by Jack Slocum

The Ext 2.0 API is very extensive and remembering all of the functions, properties or configs available is virtually impossible. The API documentation is very thorough, but it would be nice if IDEs would provide code assist options in JavaScript as they do in other languages such as Java and C#. Luckily, there are some IDEs and plugins available that do just that — and also have direct support for Ext 2.0.

Aptana Studio
When it comes to IDEs for JavaScript development, Aptana is definitely hard to miss. I personally use it daily for Adobe AIR development. However, the version of Ext (1.1) bundled with Aptana for code assist is a little outdated.

Markus Schmidleitner has created an Ext 2.0 Aptana plugin that works very well. To install it:

  • Download and install Aptana Studio.
  • Open up your Aptana application directory (for me that is C:\Aptana) and copy the jar file into the plugins folder.
  • Restart Aptana.
  • Go to Window -> Preferences -> Aptana -> Editors -> JavaScript -> Code Assist and select Ext 2.0 (you may need to deselect Ext 1.1).

Aptana Studio with Ext 2.0 code assist

Spket Eclipse Plugin & IDE
The Spket IDE has by far the most superior code assist for Ext 2.0. It uses the Ext .jsb project file and embedded script doc to build code assist that includes options inherited from base classes and full documentation.

It doesn’t have much for editing other types of files though (e.g. CSS), so my preference is to install it as an Eclipse plugin in Aptana. To install the plugin in Aptana:

  • Download and install Aptana Studio (includes Eclipse).
  • Start Aptana and navigate the application menu to: Help → Software Updates → Find and Install… → Search for new features to install → New remote site…
  • Name: “Spket”, Url: “http://www.spket.com/update/
  • Restart Aptana
  • Watch this Spket IDE Tutorial to see how to easily add Ext code assist (you can point it at the latest /src/ext.jsb to keep code assist up to date with the latest Ext version). The steps are basically:
    • Window → Preferences → Spket → JavaScript Profiles → New
    • Enter “ExtJS” and click OK
    • Select “ExtJS” and click “Add Library”, then choose “ExtJS” from the dropdown
    • Select “ExtJS” and click “Add File”, then choose the “ext.jsb” file in your “./ext-2.x/source” directory
    • Set the new ExtJS profile as the default by selecting it an clicking the “Default” button on the right-hand side of the “JavaScript Profiles” dialog.
    • Restart Aptana
    • Create a new JS file and type: Ext. and you should get the Ext Code completion options.



Since you will have installed it as a plugin in Aptana, chances are Aptana will still be your default JS editor. So to try Spket, you need to right click on a file and select Open with -> Spket JavaScript Editor.

Spket in Aptana with full documentation and code assist

Komodo Edit
Komodo Edit has the strongest support for editing multiple types of files, including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML. It’s also available on Windows, Mac OS X and Linux.

To install Komodo with Ext support:

  • Download and install Komodo Edit.
  • Download the API catalog.
  • Go to Edit -> Preferences -> Code Intelligence and select the “Add an API catalog” button below the “API Catalog” section.
  • Select the ExtJS API catalog CIX file you downloaded above.

Komodo with Ext JS code intelligence

Dreamweaver
For those using Dreamweaver, there are two plugins available SpketDW (Dreamweaver MX 2004 or higher) and SpketDWCS (Dreamweaver CS3). Both are made by the same team (Spket) as the Eclipse plugin above, so both are very accurate and thorough. One nice feature available in the Dreamweaver plugins is support for config option code assist.

Config option code assist

Members code assist

To download and install, please visit their site.

Other IDEs
There is support for other IDEs, such as IntelliJ and Visual Studio 2008 being actively worked on by the community.

Summary
When working with Ext 2.0, there are quite a few tools available to help boost your productivity. Be sure to check them out. If you know of any other tools we’ve missed, please post a comment and let us know!

82 Responses to “IDEs, plugins and tools for Ext JS 2.0”

  1. Blog » Blog Archive » IDEs, plugins and tools for Ext JS 2.0

    […] Jack Slocum wrote an interesting post today on IDEs, plugins and tools for Ext JS 2.0Here’s a quick excerptThe Ext 2.0 API is very extensive and remembering all of the functions, properties or configs available is virtually impossible. The API documentation is very thorough, but it would be nice if IDEs would provide code assist options in … […]

  2. Gary Gilbert

    Thanks a lot for the tip Jack, I have a hell of a time trying to remember all the methods for all the functions, actually I don’t remember any of them, my brain is full! The eclipse plugin will help with that.

    ps what cool AIR apps are you working on and when can we see em :)

  3. Daniel Schmitz

    its possible add a Ext Outline on Aptana ?

  4. Jack Slocum

    Daniel, the Aptana outline will work with Ext.extend() in all cases except a direct Ext.extend(Class, {overrides}) with no constructor.

    Gary, we will have something out real soon including an application sandbox friendly version and some new APIs. ;)

  5. mdm-adph

    Hey, if I didn’t know any better I’d say you’ve been reading my blog… ;) (No, I know — lots of us are using Aptana now.)

    Just started using Aptana and the Ext 2.0 Plugin within the past month — seriously, it’s like a whole different world actually programming in an IDE made with JavaScript in mind.

  6. Vinny Carpenter’s blog - » Daily del.icio.us for January 30th through February 1st

    […] Ext JS Blog - » IDEs, plugins and tools for Ext JS 2.0 - The Ext 2.0 API is very extensive and remembering all of the functions, properties or configs available is virtually impossible. The API documentation is very thorough, but it would be nice if IDEs would provide code assist options in JavaScript as they d […]

  7. Developing with ExtJs | foojam.com

    […] Ext JavaScript framework site has a good article regarding how to setup different IDEs, plugins, and tools to help during development with Ext 2.0. If you’re using Ext in a project, this is a good […]

  8. prophet

    Excellent!

  9. Eric Suen

    Very nice, I just want to say that since version 1.6.6, Spket IDE also support code completion for Adobe AIR APIs, take a look at http://www.spket.com/ext-air-tutorials.html see how to using Ext and Adobe AIR at same time…

  10. Steve’s Blog » Blog Archive » Ext JS Blog - » IDEs, plugins and tools for Ext JS 2.0

    […] Ext JS Blog - » IDEs, plugins and tools for Ext JS 2.0 [?] Share This     Read More    Post a Comment […]

  11. Frank

    Translation support for Chinese User is available. I post it on a Java forum where Ext is hot in China mainland.
    http://www.javaeye.com/topic/161161

  12. Web 2.0 Announcer

    IDEs, plugins and tools for Ext JS 2.0…

    […]The Ext 2.0 API is very extensive and remembering all of the functions, properties or configs available is virtually impossible. The API documentation is very thorough, but it would be nice if IDEs would provide code assist options in JavaScript a…

  13. Jack Slocum

    Thanks for the tip Eric, I didn’t know about support for the AIR APIs as well.

  14. jiasz

    呵呵,谢谢哈。有了这个东东,应该会更容易写。。。thank you!!

  15. jiasz

    很感谢!!!

  16. chazmatazz

    Jack, the current version of Aptana (1.1.0) has Ext 2.0 support right out of the box. In the references panel, select global references and then Ext 2.0

  17. heathbobby

    I would greatly like to see the Ext style documentation generator released to the public.

  18. Ajaxian » Ext JS IDE Support Roundup

    […] they offer for the various JavaScript libraries. Ext’s uber-coder, Jack Slocum, has put up a blog entry explaining which IDEs support the Ext JS framework: The Ext 2.0 API is very extensive and remembering all of the functions, properties or configs […]

  19. renodino

    While Ext 2.0 is great, some (many ?) of us consider Eclipse based IDEs to be flying pigs. And the other options aren’t really IDEs, just smart edittors.

    Given that Ext is all about writing “real” apps in browsers, are there any plans for a browser based IDE (”BBIDE”), ala TIBCO GI ? I’d consider that as a major killer app, and a great way to show exactly what Ext can do.

  20. Ajax Girl » Blog Archive » Ext JS IDE Support Roundup

    […] they offer for the various JavaScript libraries. Ext’s uber-coder, Jack Slocum, has put up a blog entry explaining which IDEs support the Ext JS framework: The Ext 2.0 API is very extensive and remembering all of the functions, properties or configs […]

  21. Jon Davis

    “Select ‘ExtJS’ and click ‘Add File’, then choose the ‘ext.jsb’ file in your ‘./ext-2.x/source’ directory”

    Please be consice. By default, opening the open file browse button takes the user to My Documents (in Windows), so “./ext-2.x/source” is invalid, and at this time I don’t know where to track it down ….

    Jon

  22. Jon Davis

    k got it.. the .jsb is in the ExtJS SDK, source directory

  23. Javascript News » Blog Archive » Ext JS IDE Support Roundup

    […] they offer for the various JavaScript libraries. Ext’s uber-coder, Jack Slocum, has put up a blog entry explaining which IDEs support the Ext JS framework: The Ext 2.0 API is very extensive and remembering all of the functions, properties or configs […]

  24. naxo

    I found a little bug on Aptana Plugin.
    At Samples View, when I try to preview sample (right click on a sample), I got a an alert message (’Ext’ is not defined).

    Any way, good work!!! and thanks!!!

  25. naxo

    hi,
    checking code of project, I have realised the bug is the references to ext library on each sample.
    I mean. e.g., at “forum” sample in forum.html file the reference to ext library is

    and should be

  26. naxo

    hi, sorry about previous comment.
    checking code of project, I have realised the bug is the references to ext library on each sample.
    I mean. e.g., at “forum” sample in forum.html file the reference to ext library is
    src=”../../adapter/ext/ext-base.js”
    and should be
    src=”lib/ext/adapter/ext/ext-base.js”

  27. Cindy

    Hi Jack,

    Thank you for your feedback. We’d like to post your comment on the Komodo Edit testimonial page. Would that be okay with you?

    “Komodo Edit has the strongest support for editing multiple types of files, including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML.”

    In return, we’re happy to send you a t-shirt and a mug. Please let me know your t-shirt size, delivery address and phone number, and we’ll send the package along shortly.

  28. napyfab:blog» Blog Archive » links for 2008-02-05

    […] Ext JS Blog - » IDEs, plugins and tools for Ext JS 2.0 (tags: extjs javascript ide ajax development plugin programming editor eclipse ext aptana css) […]

  29. Jack Slocum

    Sure Cindy. I will send you an email shortly.

  30. Eric Suen

    Hi Jim, If you have problem install Spket, you can post your question at http://forums.spket.com, I tried Eclipse 3.2.1, and everything works fine.

  31. Ext JS по-русски » Blog Archive » ExtJS - поддержка в различных средах разработки и IDE

    […] Оригинальная статья на английском: IDEs, plugins and tools for Ext JS 2.0 […]

  32. Eric Suen

    Hi, for those who using Visual Studio 2008, you can downlad JavaScript Intellisense for Ext 2.0.1 here: http://www.spket.com/ext-intellisense-visual-studio.html

  33. CB

    Hi I just installed Aptana IDE for extjs .. Really brilliant . Can someone help me in integrating the documentation to the IDE for extjs. Thanks in advance.

  34. 20080214 - 舊相到新相 - 網絡暴民 Jacky’s Blog

    […] IDEs, plugins and tools for Ext JS 2.0 也有不少支持 ext2 的 ide 可用了 […]

  35. Enzo Nieri

    Hi! Any options with adding support to NetBeans? Thanks!

  36. Irfan Ahmad

    Is there any IDE, plugin or tools available for ExtJS 1.1.1 ?

  37. Eric Suen

    Hi, Spket IDE support Ext 1.x - 2.x, If you using Dreamweaver, SpketDW also support Ext 1.x - 2.x, currently SpketDWCS only for Ext 2.0.1

  38. dav

    hello,
    is it possoble to install this extension on Zend Studio for Eclipse?

  39. Mikhus

    May be anybody knows is there any solutions to integrate Extjs plufin into Zend Studio For Eclipse?
    Thanks in advance!

  40. Eric Suen

    You can install Spket as plugin in Zend Studio, just the same way to intall Spket plugin in Aptana, they both based on Eclipse

  41. Mikhus

    Thank you Eric! Your advise was very usefull!

  42. Cisco

    Good news. Thanks for clause. I shall go to search for the information on the given theme further :)

  43. links for 2008-02-28 « Mike Does Tech

    […] Ext JS Blog - » IDEs, plugins and tools for Ext JS 2.0 (tags: extjs development eclipse) […]

  44. Juank

    Opensuse 10.3 + Zend for Eclipse + Spket = great IDE

  45. carlopires

    Ubuntu + Eclipse + Aptana + Spket = perfect Linux IDE for Javascript. Thanks a lot!

  46. buntyindia

    What about Netbeans Support?

  47. Cracks House

    Cracks House…

    I can not agree with you in 100% regarding some thoughts, but you got good point of view…

  48. My Trusted Cracks

    My Trusted Cracks…

    I can not agree with you in 100% regarding some thoughts, but you got good point of view…

  49. ganar premios portales web

    georgia in loan online payday georgia loan payday…

  50. jugar a ruleta

    gioco keno in linea…

  51. juego instantaneo portales

    fax loan no online payday…

  52. payday loan in 1 hour

    ganar premios…

  53. completely instant loan online payday instant online payday loan

    jugar baccara en linea…

  54. gioco baccarat in linea

    software carte…

  55. ganar premios pagina internet

    juegos interactivos web…

  56. keno gratis

    giochi keno gratis inlinea…

  57. calculator card consolidation credit loan

    card consolidation credit loan school…

  58. jack black spiel

    payday loan on line…

  59. apuesta dinero portales web

    jugar paginas internet…

  60. apostar dinero portales web

    ruleta de la suerte online…

  61. ruleta portal web

    black jack online play

  62. frei spiel

    account loan payday savings account into loan payday savings

  63. business card consolidation credit debt

    application aspen card credit

  64. faxless online payday loan

    springfield gary

  65. approval instant loan online payday

    baccarat online gambling

  66. card consolidation counseling credit debt

    7 card stud how to

  67. application business card credit small

    debt get loan payday

  68. black jack

    no teletrack payday loan

  69. gioco keno gratis inlinea

    black jack

  70. faires spielen

    kostenloses kasino

  71. play bingo online

    juegos instantaneos portal internet

  72. card credit loan uk

    internet gambling

  73. card consolidate credit debt

    bank card credit one online payment

  74. no faxing payday loan

    card credit discover number phone

  75. 7 card stud hi low

    play 7 card stud online

  76. Student Loan Default

    Student Loan Default

    I couldn’t understand some parts of this article, but I guess I just need to check some more resources regarding this, because it sounds interesting.

  77. Bad Credit Loans Personal Loan Auto Loan Calculator

    Bad Credit Loans Personal Loan Auto Loan Calculator

    I can not agree with you in 100% regarding some thoughts, but you got good point of view

  78. realistische spielbank

    juego pagina web

    Now online kasino spiel kostenloses online kasino spiel

  79. Jack

    Jack

  80. ab workout machine

    ab workout machine

    I like your blog and will come back soon

  81. juego seguro paginas internet

    aspire card credit payment

    So far card credit generator number low cost payday loan

  82. Duwir's Formmailer

    Duwir’s Formmailer

    Der vierstellige Bildcode dieses Formmailers verzerrt die Zeichen in sich.



© 2006-2008 Ext, LLC