Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between gwt-ext and ext-gwt

Tags:

gwt

gwt-ext

gxt

Am I taking crazy pills, or are these two things pretty much identical?

like image 491
KevMo Avatar asked Jul 21 '09 18:07

KevMo


1 Answers

Having spent significant time with both frameworks at this point I would say that they are not "pretty much identical". While they may both use the same graphical assets, the way that they go about getting there is very different and depending on your needs/development style you may find one preferable to the other.

GWT-EXT encapsulates Ext-JS by wrapping the Ext-JS framework which can lead to frustration when attempting to extend functionality because you don't have access to the implementation at a low enough level. However, if you understand Ext-JS and feel like editing the javascript, that's still an option.

EXT-GWT is not a javascript wrapper. As mentioned before, it uses the Ext-JS graphical assets and some of the API's are similar but it is a completely native GWT/Java implementation. This makes extending the functionality a lot easier. Of course, the choice is up to you.

like image 154
codefin Avatar answered Oct 22 '22 08:10

codefin