Jeoff Wilks

Greenhorn
+ Follow
since Jan 08, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jeoff Wilks

Eduardo Cavero wrote:Maybe I will play with jquery a bit.



Since you're interested in drag-and-drop, don't forget to check out jquery-ui's dnd demos. For example:
http://jqueryui.com/demos/sortable/
14 years ago
GWT
Yeah sorry about that, I guess I took your words a little bit out of context.

The inline hyperlink thing was really vexing to me because it's one of those things that is SO EASY in regular html (without even javascript), so it was annoying that I couldn't figure out how to put a space on each side of the span element....
14 years ago
GWT

Eduardo Cavero wrote:I haven't used jQuery yet, but I did use other JavaScript frameworks like Prototype and ExtJS. I like GWT because I'm a Java developer and that means I could have all my application written entiery in Java.



I'm a Java developer as well, but I found GWT a little constrained; maybe it's because I've used jquery quite a bit. Java works well enough for back-end plumbing, but I really missed javascript closures when I was using GWT. Things that I could do with jquery in just a few lines of html and javascript, blew up into pages of code with GWT. I think that's acceptable if you're building a large, complex application because then you benefit quite a bit from GWT's compiler.

Also, GWT doesn't entirely insulate you from the concerns of Javascript; there is JSNI code to write at times, and when debugging problems the extra layers can sometimes be aggravating. I would recommend jquery for 80% of projects and GWT for the other 20%. NOTE: This recommendation could change if GWT were to ever support other input languages (such as Scala or JS2) or if Java finally gains closures.

Between the two, my first exposure was to GWT. I later did a full project in jquery, then returned to GWT, then scrapped the GWT project and reimplemented it in jquery. If you're interested to know why, read my blog entries on switching from jquery to GWT and then back to jquery.
14 years ago
GWT