I want to port a standalone application to web based which run within browser. Since there are extensive windowing, I plan to use

http://www.extjs.com/

May I know besides the web GUI framework I mention above, is there any alternative? Preferable free and open source.

link

feedback

closed as too localized by Will Feb 7 at 15:05

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

6 Answers

up vote 2 down vote accepted

Top 10 Javascript frameworks. Personally, I like GWT a lot.

link
OK. I like the Top 10 list. The information is helpful. – Yan Cheng CHEOK Nov 17 '09 at 7:30
feedback

SproutCore - http://www.sproutcore.com/

Cappuccino - http://cappuccino.org/

link
One good thing to note is that sproutcore is targeted at HTML 5 and modern browsers, while cappuccino is much more compatible (it even works on IE6!). Cappuccino is going to have an app called Atlas very soon that makes layout a breeze, and sproutcore will eventually have one as well. – Blacktiger Nov 22 '09 at 21:57
feedback

If you are porting from a Java app, Google's Web Toolkit might be the best fidelity match.

link
feedback

Check out Cappuccino and jQuery. Of course, there are tons of other Javascript GUI frameworks to choose from, as well.

link
feedback

I would highly recommend qooxdoo. While the definition and layout of the GUI is done within the Javascript code (which doesn't help split and isolate the development load if you wish to use a designer to layout the GUI) it is the closest thing I've found for matching native application GUIs. I was tasked with doing exactly what you describe and found it met all my requirements. Because I do not have the luxury of a dedicated UI Engineer or Graphics Designer I found the paradigm (similar to a manual version of .NET WinForms design or Java AWT) to work well. It does not rely on server-side code to do it's magic and is entirely client-side Javascript.

The learning curve is a bit steep and developing in it makes you long for the ease of GUI development of a C# native app in Visual Studio (with WYSIWYG form layout.) However, I'm not aware of any other toolkit that is any better in this area and qooxdoo is maturing in this direction. The open source framework is being continually improved. It is being primarily sponsored by 1&1 hosting and they are very receptive to community involvement. Each version of it adds more and more functionality and they provide an abstracted interface for all the major browsers (and platforms like Android and iOS devices.)

It is not what I would call a light-weight toolkit as a modest web-based application will require the browser to enact multiple HTTP GETS for the various images involved in the themes. Also expect each user to suck 1 to 1.5 MB of bandwidth for loading a non-cached application (because of the Javascript files and theme elements.) However, the API provides a mechanism for progressively and dynamically loading objects, sub-widgets, and windows. They have implemented the MVC paradigm very well. Once the Javascript "engine" is loaded it performs very well.

The build environment is an advanced system of Python scripts that effectively optimizes the Javascript code that is built. Having used many APIs I would equate it's organization to the beautiful Qt C++ API and toolkit. A lot of thought has gone into it.

Note, I evaluated many toolkits a year ago and narrowed it down to ExtJS and qooxdoo. I chose qooxdoo based on the plethora of widgets and themes, but I have not actually used ExtJS and can not provide an educated comparison. At the end of the day, it helps me get things done very well.

link
feedback

I've used the Yahoo UI library in the past, but I find it can be a bit slow on the browser side of things.

You may also want to look at script.aculo.us and Dojo.

link
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.