Blog

Ext 2.2 Released

August 04, 2008 | Brian Moeskau

We are pleased to announce the release of Ext 2.2, a fully backwards-compatible maintenance release of Ext. This is a recommended upgrade for all Ext 2.x users as it not only adds many new components and examples, but also provides a host of important bug fixes and performance improvements.

New Features

While many minor release versions are simply boring bug fix releases, we have also decided to pack a bunch of brand new components and extensions into 2.2 for your enjoyment. Let's start off with the fun stuff!

CheckboxGroup / RadioGroup

CheckboxGroup and RadioGroup Technically, while the individual Checkbox and Radio controls are not new, they may as well be, considering the overhaul they have had in this release. Gone are the ugly standard browser input controls, now replaced by attractive, visually-consistent Ext-ified versions (a long-overdue improvement). In addition to that, we've added group controls for both that support complex layouts with just a config option or two. This was inspired, in part, by the RadioGroup user extension created by community member vtswingkid. Previously in order to accomplish similar grouping layouts for checkbox/radio controls you would have had to create a container with a ColumnLayout and manually place your controls across multiple column configs. Now you can do something as simple as...
 
	... },{
	    xtype: 'checkboxgroup',
	    fieldLabel: 'Multi-Column (horizontal)',
	    columns: 3,
	    items: [
	        {boxLabel: 'Item 1', name: 'cb-horiz-1'},
	        {boxLabel: 'Item 2', name: 'cb-horiz-2', checked: true},
	        {boxLabel: 'Item 3', name: 'cb-horiz-3'},
	        {boxLabel: 'Item 4', name: 'cb-horiz-4'},
	        {boxLabel: 'Item 5', name: 'cb-horiz-5'}
	    ]
	},{ ...
 
Check out the live example.

History

History Another component that has been missing in Ext is a browser history utility to enable history stack navigation within your single-page Ext application. The new Ext.History singleton makes it extremely easy to do exactly that, and it uses an event-based API to notify you when the browser history has changed. Check out the live example.

MultiSelect / ItemSelector

MultiSelect These two components were contributed to Ext by community member TJ Stuart (thanks TJ). The MultiSelect is a traditional list control that allows for selecting multiple list items, and the ItemSelector combines two MultiSelects into a more sophisticated control that includes drag-and-drop list selection and bulk selection and deselection among other features. Check out the live example. For the time being these controls are still implemented as user extensions, and the MultiSelect will likely be migrated to become a core component in a future release. They should not yet be considered to be API-stable controls, but should still be quite useful if you need the functionality.

FileUploadField

FileUploadField This is an official extension provided as a sample for implementing a useful form component. Not everyone needs a form upload component, but if you do, you can't live without it. This control is fully styled and has an API consistent with other Ext form controls. It also supports both Text+Button (read-only text) and Button-only modes, and can participate fully in form layouts. Check out the live example.

XmlTreeLoader

XmlTreeLoader This official extension provides a great demonstration of extending an existing Ext component to provide functionality that you need in your own application. Again, loading an XML document into a tree is not needed by everyone, but if you do need something similar, this should be a great demo. Check out the live example.

GMapPanel

GMapPanel This extension was originally written up as a demo for one of our previous blog posts. However, it proved to be such a hit with the community that we transformed it into an official extension. This is another useful example of extending a standard Ext component, in this case to interface with an external API. Check out the live example.

Other Notable Changes

"But wait, isn't this a maintenance relase?" It sure is, and there have been countless fixes and improvements in the framework since 2.1. Here are some of the most important highlights from what's changed.

Full Firefox 3 Support

History Firefox 3 is a fantastic upgrade from version 2 (especially on Mac — I'm looking at you, scrollbars!). Ext performance out of the box on Firefox 3 is far better than it was before. However, the negative is that the new version also introduced a handful of bugs that have been addressed in this Ext release. Most notably:
  • Grid columns were visually misaligned
  • Ext.onReady stopped working reliably (our desktop demo stopped initializing correctly)
  • The DatePicker width ran off the screen, making the control unusable
  • The TabPanel contextmenu event stopped firing, killing the TabCloseMenu extension
  • Window dragging stopped working correctly
  • Various minor visual inconsistencies
If any of these issues sounds familiar, then Ext 2.2 is for you!

Advanced Drag and Drop Examples

Drag and Drop There are 3 new advanced drag-and-drop examples available in the Ext distribution, authored by community members Animal and JGarcia (thanks guys). These examples demonstrate:
  • How to implement the Ext.DragZone/DropZone classes in the context of a business-style application (live demo)
  • Dragging and dropping records from one grid to another (live demo)
  • Dragging records from a grid and dropping them onto a form to populate the form's fields (live demo)

Performance Improvements, Bug Fixes and Other Goodies

  • New properties for differentiating Firefox version (Ext.isGecko2 and Ext.isGecko3)
  • New support for deferred row rendering in the grid (the default), boosting render performance significantly
  • Refactor of EventManager to improve how event handlers are managed, which should help alleviate IE DOM leaks
  • Fixed the "small PNG's can cause performance issues in IE7" problem
  • More than 100 additional fixes and improvements
Consult the 2.2 release notes to get a complete listing of all changes. We are very happy with this release and hope that it will provide a lot of value to our community. And for all of you version 1.x users, we have not forgotten about you either. We plan to push out Ext 1.2 within the next few days to address many of the same bugs mentioned above, including Firefox 3 issues, so keep an eye out for that. Download Ext 2.2

There are 100 responses. Add yours.

Behnood

4 years ago

Great news, great work
I love extjs

Atashbahar

4 years ago

Awesome!
Thanks guys for the hard work!

wm003

4 years ago

Thanks again for the great work! You guys rock! wink

mankz

4 years ago

Might want to tell old Ext users to purge their browser caches. I got “Ext.history” is undefined when trying the history example, worked as a charm after clearing my FF3 cache…

galdaka

4 years ago

Guauuuuuuuuuuu!!

Excellent work as always Ext team!!!!!!!!

teddyjas

4 years ago

wuhuuuu.. I love the Ext.history add on smile

igo

4 years ago

Very good job! Unfortunately no more with LGPL :(

kimie

4 years ago

bravo ext js…

Buergi

4 years ago

Congrats!!!! Awesome work!

Now let’s implement comet grin

krzak

4 years ago

Do I missed something or there is no air folder ? Was it in 2.1 by default (I have) smile

IntelliJ IDEA??????? » Blog Archive »

4 years ago

[...] ??????????????????????????????GMapPanel?DnD?Local History?????????????2.2?????????????????? http://extjs.com/blog/2008/08/04/ext-22-released/ [...]

JimmyPhp

4 years ago

Many Thank’s.

CE_edition

4 years ago

Great news!
Thank you, guys! It is quite intime event! We gonna begin new project and naturally will use 2.2!
But, as I understand, it is sadly has no tableform layout still..

Mattias

4 years ago

Awesome! Thanks a lot.

Animal

4 years ago

Congratulations to the Ext Dev team on a job well done.

Comma

4 years ago

Yeah! Thx!

Christian

4 years ago

Awesome! And thank you very much for the FF3 fixes!
This is really an amazing project!

Edward Spencer

4 years ago

Ext.History has made my day - thanks!  FF3 fixes very much welcome too smile

Jay Garcia

4 years ago

This is great.  Great job to the dev team and all the contributors.  I think Ext 2.2 is a *major* update.  Thank you so much for the hard work.

Ext JS Framework in Version 2.2 erschienen | Ajaxs

4 years ago

[...] veröffentlicht wurde die neue, voll abwärtskompatible, Version 2.2 des Ext JS Javascript-Frameworks. Neben wichtigen Fehlerbehebungen und [...]

imnphd

4 years ago

It is awesome.
(The sort in the grid filtering example does not work)

willgillen

4 years ago

I absolutely love the improvements to the frameworks, but what about the FLOSS exceptions to the GPL License???  I thought you guys promised this would be fixed in version 2.2

willgillen

4 years ago

Nevermind about the FLOSS exceptions.  I found them under the licensing pages:
http://extjs.com/products/floss-exception.php

mdmadph

4 years ago

Thanks so much for the checkbox improvements!  Use them a lot in my apps.  And thanks for continuing to support 1.x—got a lot of apps still using that, with no time to update, and bug fixes for it will help out immensely.

streetkiller

4 years ago

??????
well done! thanks
gut gemacht! Danke

smile

Aidas Kasparas

4 years ago

Thank you for release.

Unfortunately have to report bug (and I am not allowed to do so via forums :-(

Lithuanian weekday names are shofted by one. So, if one opens calendar, he sees that first day of the week is Tuesday (Antradienis); should be Monday (Pirmadienis).

Fix is available here: http://www.kasparas.net/ext-2.2-lt.diff

Animal

4 years ago

You can report a bug on the forums.

Just register, then create a thread at http://extjs.com/forum/forumdisplay.php?f=20

Gary J

4 years ago

Awesome news!  Great work Ext Team and Community.  Thank you so much, my apps are 100x better thanks to Ext.

Brian Moeskau

4 years ago

FYI, if anyone is having issues like the ones mentioned above (history, checkboxes) please hard-refresh.  You probably have a stale file cached.

crysfel

4 years ago

Thanks!!

i really like Ext :D

Daily del.icio.us for July 27th through August 5th

4 years ago

[...] Ext JS - Ext 2.2 Released - We are pleased to announce the release of Ext 2.2, a fully backwards-compatible maintenance release of Ext. This is a recommended upgrade for all Ext 2.x users as it not only adds many new components and examples, but also provides a host of important bug [...]

alloftheabove

4 years ago

Really awesome!  Can’t wait to start using it!

Ext 2.2 released : OSButler

4 years ago

[...] Ext 2.2 has been released, including new features, such as browser history and a google maps window element, as well as dozens of bug fixes. Official release announcement. [...]

ritesh kapse

4 years ago

Great Work !!!

Thanks for the new release and the help you provide through forums smile

Tanajura

4 years ago

Great Job,Tanks!

Ajaxian » Ext 2.2: History, Selectors, FileU

4 years ago

[...] Ext 2.2 has been released, and it has features to complement the usual maintenance bug fixes and performance updates (Ext now works better in Firefox 3). [...]

Alex

4 years ago

Awesome! just the functionality that we needed.

Ajax Girl » Blog Archive » Ext 2.2: Hi

4 years ago

[...] Ext 2.2 has been released, and it has features to complement the usual maintenance bug fixes and performance updates (Ext now works better in Firefox 3). [...]

Daniel Bernal

4 years ago

Desde Venezuela, Buenisimo la nueva version nueva del EXT JS…

Saludos,

tai

4 years ago

the newer, the greater!

Javascript News » Blog Archive » Ext 2

4 years ago

[...] Ext 2.2 has been released, and it has features to complement the usual maintenance bug fixes and performance updates (Ext now works better in Firefox 3). [...]

joyfulbob

4 years ago

Thanks for the upgrade! It is much appreciated!

Any details on how “deferred row rendering in the grid” will increase performance? I’ve got grids now that load up to 250 rows and was wondering how this new feature will help.

I searched the forums without any replies.

Thanks in advance!

Jeff

4 years ago

Can anyone describe in a little more detail how much of an improvement was provided with:

“New support for deferred row rendering in the grid (the default), boosting render performance significantly”

We currently use EXTJS but have some tables with many hundreds if not thousands of records.  Would 2.2 improve the local rendering of this data on the PC?

Thanks Very Much!

Stefan

4 years ago

Ext-cellent!

Thx =)

daniel.rochetti

4 years ago

First of all conmgratulations for the excellent work! The library rocks!

I work for a big brazilian company, now part of the biggest japanese group, Mitsubishi, and we were developing some architecture directives for all of our clients .At first sign, we were inclined to use Ext as our Rich GUI library, now we can’t do that anymore, we had problems with our lawyers, they think that you guys are a little confused with licenses and stuff. You guys gotta pay attention with those icons and prototype/jquery bridges and other little details…
Well, summarizing, we can’t use Ext anymore, we’ve lost 2 months of work and our clients won’t be able to have that rich and beautiful interface anymore… shame shame shame.

Patrick Greene

4 years ago

Ahhhh so nice. Thanks guys we love it!!

Aaron Conran

4 years ago

@joyfulbob and @Jeff Regarding the performance enhancements to the grid:
Previously the whole grid would be rendered up front (rows included). As of Ext 2.2, the grid’s panel will be rendered and then the rows will be filled in afterwards. This greatly improves rendering time by allowing layout calculations to take place and for the grid to be visible before it is populated. It will not improve loading of an Ext.data.Store or complex XML processing which you may have to do in an Ext.data.DataReader.

We’d love to hear any feedback about real world applications and the performance benefits that you’ve noticed simply by upgrading to Ext 2.2..

Gary J

4 years ago

@Daniel
I work for a Global Fortune 50 company.  The ExtJS library went through a rigorous IP review and passed with flying colors.  I think you guys should get some better guidance.

daniel.rochetti

4 years ago

Gary J, Thank you for your feedback, but better guidance… Mitsubishi? I don’t think so! Note, I’m talking about open license, not framework quality!
Plus ExtJS changed the license terms about 3 times in 2 years, We can’t consider that a secure aproach at all! Personally I love the framework, it’s nice, pretty, straight forward to learn… BUT (see? there’s always a but) in a company I would NOT use it unless the company buy a enterprise license.
Again, i wanna let things clear here, I know Ext since the very beginning, I’ve created some Struts2 customization using it, so I REALLY like it.

Danny Morris

4 years ago

Daniel
I’ve had a similar experience. Even though Ext is a great framework, our lawyers have refused us from using it. The change of license with every release had a part to play. Even with 2.2 the license has changed.This time adding FLOSS.
Plus they got to read a lot about the bad press Ext got when they switched to GPL. In my opinion, if Ext had only a commercial offering and drop the whole GPL thing they would be better off

Oleg

4 years ago

Omg i love you

Heather G

4 years ago

Great work…  Love the history component.  Got Team Ext wink

Ext JS 2.2 liberado | Lobo tuerto

4 years ago

[...] Para descargar el nuevo Ext 2.2, da clic aquí. Pueden leer información más detallada sobre esta versión en: Ext 2.2 Released. [...]

Stripeman

3 years ago

Thanks for the hard work and this release !!

RIABG - ?????? ??????? ?? RIA ??????????

3 years ago

[...] ???? ?????? ?? ExtJS - 2.2. ??????? ???? ??????????: ???????, GMapPanel ? ?????, [...]

outaTiME at refinn dot com » Blog Archive &r

3 years ago

[...] Ext JS Blog.)  Posted by outaTiME Filed in ExtJS, [...]

spidergeuse

3 years ago

Geeeee!!! You guy are TOO MUCH!!!

Awesome. Keep the hard work.

Joyfulbob

3 years ago

@Aaron Conran
OK,thanks for the “Regarding the performance enhancements to the grid” info. A quick test of loading 142 records that are then grouped seems quicker; from about 8-10 seconds to 4-5.
I’ll do more testing. Do you have an idea of how many rows to notice a significant improvement?
Thanks!

Ali

3 years ago

still no RTL support

ps_exter

3 years ago

This release is missing yui-utilities.js file.

For all those who use YUI along with extJS, this release not work :((

Aaron Conran

3 years ago

@Joyfullbob - I would say that an improvement of cutting your rendering time in half is quite an improvement. Your rendering should not be taking that long though. Maybe post on the forums to try to see why your grid rendering is taking that long.

Naeron

3 years ago

History manager, great. That’s what I’ve been looking for for weeks.
Thanks!

petr

3 years ago

For rendering performance look at the qooxdoo framework. I think that if ExtJS will use similar approach that it can perform better (for example 10000 rows isn’t problem here)

Kiran

3 years ago

Hey! The Google Map Panel is Really a cool and awesome one… Excellent!!

Outside the Box() » Back to Business

3 years ago

[...] Erik Weibust and I had discussed me presenting to the group several months ago. I orginally planned to present in July, but vacation plans got in the way of the meeting date. In the interim, quite a bit happened in the ExtJS world. The fallout from the change to GPL from LGPL had simmered down, and they released a new version. [...]

Justin Akehurst

3 years ago

Where’s the release of Ext 1.2 ? It was supposed to be released “within the next few days”, back on Aug 4th, 17 days ago.
Please release it, so that I can incorporate the Firefox 3 fixes into our codebase.

jd

3 years ago

what about ext-air in 2.2??

ExtJS2.2 and Ext.ux.Livegrid

3 years ago

[...] that Ext 2.2 is here, changes in its API will prevent Ext.ux.Livegrid from working with it. There are already patches [...]

Alex

3 years ago

Fantastic work on 2.2!  History and MultiSelect are indeed star attractions.  With a file upload field as icing on the cake, it’s a tasty morsel indeed!

BrightSoul

3 years ago

I don’t even know who you are but I’m deeply in love with you guys.
Thanks.

vitaly

3 years ago

good job! but i have the following issue: when i run some of the examples they show nothing! they work perfectly online, but not on my working computer. there’re no errors, just no data is shown. this is for layout sample and for columned tree.

Herb

3 years ago

Do you realize how damaging this GPL licensing issue is going to be for your library?  Can you condsider releasing it as well under a commercial license?  Please don’t be yet another example of a good technology destroying itself.

.: VinylFox :. » Blog Archive » GMapPa

3 years ago

[...] was nice to see the announcement that my extension for Google maps integration with ExtJS panels has been included in the official [...]

vahur

3 years ago

JQuery performance (specially on page init) was a problem. Now it seems better.

User links about "ext" on iLinkShare

3 years ago

[...] links | iLinkShare 1 voteslec 4 - more on field extensions>> saved by greenbirrd 1 days ago1 votesExt 2.2 Released>> saved by strollo 2 days [...]

Demas

3 years ago

thank’s very much to “ext”, i love you…
don’t stop to share your knowledge about this to us…

lily

3 years ago

excellent .??

Ramesh

3 years ago

Excellent!  I love my extjs

Websites tagged "extjs" on Postsaver

3 years ago

[...] - Ext 2.2 Released saved by munralamun2008-11-12 - GWT Drag and Drop saved by spudgy2008-10-24 - More on live grids : [...]

SAys

3 years ago

Thank you for all that you have done for this excellent application.

Ext.ux.Livegrid » Blog Archive » ExtJS

3 years ago

[...] that Ext 2.2 is here, changes in its API will prevent Ext.ux.Livegrid from working with it. There are already patches [...]

TDG innovations LLC » Blog Archive » H

3 years ago

[...] I’m working to get submitted as example code for the Ext JS SDK, much like I did for the 2.2 release (See “Advanced Drag and Drop Examples”).  I cannot link to the private beta link for [...]

Buy amoxicillin without prescription.

3 years ago

Buy amoxicillin without prescription….

Buy amoxicillin without prescription….

BupoptoveWeep

3 years ago

Hello, I can’t understand how to add your blog ( extjs.com ) in my rss reader
————————————
my blog:  http://vahar.ru/

Ext 2.2 Released

3 years ago

[...] Ext 2.2 Released [...]

ram

3 years ago

Hi,

hopefully an easy one:
I have a TabPanel with initial height. Inside i have a resizable element. When i resize it, tabPanel doesn’t change dimension, so part of content is hidden.

How can i achieve auto-grow, or have i to do it manually by resize event?

buy_vigrxplus

3 years ago

Great post! I’ll subscribe right now wth my feedreader software!

?a?o??a

3 years ago

?? ??... ??? ??? ? ?????????: ????????? ?????????? ? ????? smile

siki?

3 years ago

I am grateful to you for this great content.aöf

BKR Hypotheek

2 years ago

SUper post about the ext js. Really enjoying your contributions.

Goedkoop geld lenen

2 years ago

this is really awesome. You are the key of our succes with our community. More powerful than Mootools.

Ahsan Murshed

2 years ago

Nice post,Thanks for sharing it.

Ramon Bosserman

2 years ago

Wonderful web site! Thank you!

Chong Munnell

2 years ago

I wasn’t trying to become racist.. I like to state information.. I dwell in reality not a wonderland..

Brommerverzekering

2 years ago

Great job! Thank you for the great post!

ELECTRONIC ROOM

2 years ago

so nice content and info

Paz Mccreedy

2 years ago

Hi! Congrats. That was a great comment. I am ready to find out more about this fascinating topic. Will be in touch. Greetings from France.

Comments are Gravatar enabled. Your email address will not be shown.

Commenting is not available in this channel entry.