I recently had the experience of doing the same thing (a search combo box) with jquery and extjs. I found extjs to be buggy and overly complex. On the contrary, I found jquery to work very well and be very simple. I am wondering what are other people's experiences of using extjs. Does extjs complexity actually buy you something?
-
subjective question? shall we ask "what are the strengths of ExtJS that jQuery lacks?" or "What are the benefits of ExtJS over jQuery?" perhaps? Still seems loaded to me :\ ~~ Maybe this link helps? en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks– jcolebrandOct 27, 2010 at 21:32
-
I would like opinion answers based on experience. Did people find extjs useful and in what cases, does it have bugs or its just my fault, is is complex to use or not; maybe there is a simpler way to do the same thing, and it is currently the jquery way.– Stefan SavevOct 27, 2010 at 21:38
-
In the context of the question, I would add the 'web applications' tag insted of ajax/javascript– SW4Oct 27, 2010 at 22:10
1 Answer
They are not comparable imho.
jQuery UI is just a combination of a couple of widgets which can be used together but are not really integrated or anything. Quite extensible, quite fast, but not a complete widget toolkit.
ExtJS is a full-blown widget toolkit Web App framework that is comparable to most GUI toolkits in terms of features. yes it's useful, but it's also very complex and very large/slow. So imho it depends on what you need. For a normal frontend I would never use ExtJS since it's way too large and slow.
But for an Admin panel or something large where it actually adds a lot of usability, yes please.
Just try and create something like this with jQuery UI: http://dev.sencha.com/deploy/dev/examples/grid/totals.html
Also, with ExtJS you can even design your interfaces with a drag and drop interface these days: http://www.sencha.com/products/designer/download.php
Size comparison:
jQuery:
jquery-1.4.2.min.js: 70.5KiBjquery-ui-1.8.5.min.js: 199.5KiB- Total: 270KiB
Ext:
ext-all.js: 697.7KiBext-base.jsis 26.5KiB- Total: 724.2KiB
-
1Have you seen the telerik extensions for ASP.NET MVC - demos.telerik.com/aspnet-mvc/grid/grouping?theme=vista? These were built with jQuery– Russ CamOct 27, 2010 at 21:48
-
Maybe you haven't worked with jQuery UI that much? I have written a fully drag and drop dashboard with it and everybody that touches it loves it. I've even come across people using it in ways I hadn't expected. And that grid can easily be done in jQuery given the time to develop it. Find out how long it took them and I'll duplicate it in that time. Oct 27, 2010 at 21:48
-
1@Drachtenstern: I have experience with both jQuery UI and ExtJS and I find that both just serve a different purpose. I have never claimed that you can't build the same interfaces with jQuery UI. But it will probably take you quite a bit more time to build. jQuery UI is great if you want to integrate it with an existing UI, ExtJS is great for building an entire UI. Both are great but serve a different purpose.– WolphOct 27, 2010 at 21:52
-
@WoLpH - click on the editing link in the left navigation links - demos.telerik.com/aspnet-mvc/grid/editingajax?theme=vista. I wasn't contesting your point, just wanted to highlight some good examples built with jQuery :)– Russ CamOct 27, 2010 at 21:53
-
1@WoLpH, apologies I didnt realise it was a reference to filesize, more how 'cumbersome' it was. Filesize wise you're right, you 'get what you pay for', upfront large sizes including a large amount of precoded functionality, jQuery is smaller, but requires you then produce the code for this functionality- so it comes down to a question of use and whether you will use ExtJS enough to justify the size caused by the inbuilt functionality, so I do agree :)– SW4Oct 27, 2010 at 22:47