Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write a temporary Web-based graphical front-end for a custom server system. In this case performance and scalability aren't issues, since at most 10 people may check the system simultaneously. Also it should be PHP or Python (server) & JavaScript (client) (can't use Flex or Silverlight for very specific non-programming related issues).

So I know I could use YUI or jQuery, but was wondering if there is something even more high-level that would say allow me to write such a little project within a few hours of work, and get done with it. Basically I want to be as lazy as possible (this is throw-away code anyways) and get the job done in as little time as possible.

Any suggestions?

share|improve this question

14 Answers

up vote 8 down vote accepted

As it hasn't been mentioned yet: jQuery.UI

share|improve this answer
Yes forgot jQuery.UI hadn't used it but since it leverages jQuery it should be easy. – Robert Gould Nov 17 '08 at 9:13
Funny how your question now asks for something easier then JQuery (the internet is a free medium, you can ask what you want ;) Yet my answer for JQuery is accepted :p don't mind though. – Boris Callens Dec 18 '08 at 15:46
11  
I dont think jQueryUI qualifies as "very high Level" UI framework. – Marko Dumic Jan 28 '09 at 12:25
Well in my defeonce:It seems the OP has been modified since my answer. Also, define "very high level". – Boris Callens Jan 28 '09 at 15:08
2  
Although I use it on occasion, this is definitely NOT "very-high level UI framework for Javascript" – Marko Dumic Oct 8 '09 at 12:30
show 1 more comment

You could look at ext.js - it provides lots of widgets to GetThingsDone quickly.

share|improve this answer
Thanks, ext.js looks nice and the samples seem to use little code – Robert Gould Nov 17 '08 at 9:11
1  
You should add a note that Ext 3 is bringing tons of improvements, including a graphical UI builder. – eyelidlessness Nov 17 '08 at 9:24

I've recently been playing with Cappuccino, and find it a very straightforward and pleasant framework to work with.

share|improve this answer

Also Dojo's UI library named Dijit is absolutely considerable!

share|improve this answer

Here is a few ones

  1. ampleSDK (interesting approach)
  2. DojoToolkit and their nice set of widgets
  3. The always changing jQuery UI
  4. The radical Cappuccino
  5. rialto
  6. A bit rough on the edges Echo
  7. Simple UI kit UKI see demo
  8. vaadin (Requires Java)
  9. jxlib.org
  10. A bit beta, but Prototype-ui
  11. Simpler widgets livepipe.net
  12. dhtmlx.com
share|improve this answer

ExtJs, Bindows, YUI. First two are commercial but worth the money.

share|improve this answer

Check out DHTMLX.

DHTMLX Toolkit is a comprehensive set of Ajax-enabled DHTML UI components. Professionally developed grid, treegrid, treeview, tabbar, calendar, menu, toolbar, combobox, windows, items browser, color picker and file uploader empower developers to build cross-browser web applications with high interactivity and rich user experience. DHTMLX components provide the most complete set of features and allow you to bring desktop-like functionality to the web.

share|improve this answer

I came by qooxdoo a while ago. I haven't used it but at least the demos look cool.

share|improve this answer

I would try application.js - less animation fluff, lots of controls and it's a window manager (someone mentioned Bindows.. not worth the money for a terrible UI).

used in this Online Word Processor

I find cappuccino confusing, and I don't want to learn yet another language tied to a single library.

share|improve this answer

YUI seems to be good while Extjs also comes very close. There is little difference between YUI and Extjs, though YUI is free has a much larger community support and is backed by a giant like Yahoo. for cappuccino u will have to spend time learning heir Objective-J, once learnt that you need not write a single line of HTML,CSS and Dom manupulation.But if you are comfortable with all these why spend time learning objective-J ? Bindows again is a good framework very similar to YUI and Extjs, what I like about it is that it has many ready made themes that makes it more attractive and simple to design your own custom theme. But say 2 years down the line I personally feel that YUI would have gone much farther than all these.

share|improve this answer
YUI has gone nowhere unfortunatly – Akshar Prabhu Desai Sep 23 '10 at 22:07

Out of all the JS frameworks out there, JQuery and YUI are my favorites. They accomplish a lot of the same but in very different ways.

For your request (lazy, easy, and powerful) I would vote JQuery. If this is something that will be more long term and more of an application that is very verbose and code heavy, I would vote YUI.

I really don't think there is anything out there that is better than these two frameworks. Either choice is a good one.

share|improve this answer

Sproutcore would be a good choice.

If you're unfamiliar with it you might find that the time required to learn the basics is too long for throw-away code but once you've got the basics down it's quite quick to develop with.

share|improve this answer

Qooxdoo is phenomenal. You can do mobile, web, and desktops with it. It abstracts away all the html and css. It's well-documented and OO. You can also use the same objects server- and client-side.

http://qooxdoo.org/demos

share|improve this answer

The latest additions to the List would be WIJMO and KendoUI.

http://www.wijmo.com

http://www.kendoui.com

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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