Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How different is Ext JS from others like jQuery and Mootools

When looking at Ext JS, I don't get the feeling that it's meant for the same things as jQuery and Mootools.

Whilst jQuery and Mootools help with the general workings of a site, Ext JS seems to be focussed on tables and storing data, plus manipulating it.

So, is this observation correct, or is Ext Js fit for the same work as jQuery and Mootools?

like image 990
KdgDev Avatar asked May 07 '09 16:05

KdgDev


People also ask

Is Ext JS still used?

Nowadays, Ext JS can be used both as a single script (with all classes and components in one file) or by building the application with the Sencha Cmd.

What is Ext JS used for?

Ext JS is a well-known JavaScript framework that is mostly used to create complex web and mobile applications for different devices.

What is Ext JS developer?

Mobile And Web Application Development Ext JS is a comprehensive JavaScript framework for building enterprise and data-intensive web apps across devices. Our team provides faster application development using the largest set of rich, customizable UI components.


2 Answers

Comparing ExtJs and JQuery is like comparing apples and oranges. You can compare Ext Core to JQuery, and ExtJs to JQuery UI.

Ext Core and ExtJs are Open Source, with Core being under an MIT license and ExtJs falling under the GPL 3. Both are ultimately managed by Ext, LLC, including all changes to the libraries. Ext has a dedicated development team and support staff, and those utilizing the commercial license with a support contract have full support for help and issue resolution. Aside from that, the Ext control classes (and all other classes) are very comprehensive and consistent.

All of the libraries you mentioned have there pluses and minuses, but what I've already mentioned helps make ExtJs a compelling choice for me.

like image 85
Steve -Cutter- Blades Avatar answered Oct 23 '22 10:10

Steve -Cutter- Blades


We used ExtJS to build, very rapidly, a sophisticated call centre application with almost no concern for styling, as this all comes "out of the box". However, ExtJS uses a more traditional UI, so if you want more fine control over UI or want something flashy or very unconventional, then Ext is not the right choice. Mootools and JQuery are better for original design but require much more effort in getting the styling right.

Note that ExtJS can be used with other libraries and we do use it with JQuery, simply because we have different apps, built in different libraries, that must sit together.

like image 25
Raspin Avatar answered Oct 23 '22 10:10

Raspin