4
votes
3answers
143 views
How do you synchronize server-side and client-side code?
Something I've been learning (and teaching) in Software Engineering is that code duplication is the root of all evil. On the other hand, I find it quite hard to explain how this concept should be …
0
votes
1answer
42 views
Open source software which allows user to draw ER/flow diagrams for my web application
we are developing a web application which allows a user to draw diagrams(flow/ER diagrams) and we need the representation of that diagram in some XML or other formats. How should we acheive this ?? is …
0
votes
5answers
38 views
Including Information in HTML for Javascript to Consume?
Hi everyone
I'm am building a web app with app engine (java) and GWT, although I think my problem is moreso a general javascript question.
In my application, I want to include a side-menu which is …
0
votes
2answers
29 views
How to get a reference to the Window object using GWTQuery?
The title pretty much says it all.
I'm trying to use jQuery's ability (hoping GWTQuery has implemented it) to pass a callback function to the window.resize something like this(example from jquery …
0
votes
3answers
80 views
GWT server-side interaction with database
I am building a project in GWT that pulls an rss feed, executes regular expressions on the feed (in javascript using JSNI), and then stores that resulting data on a database where the users can access …
1
vote
1answer
98 views
What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?
Hello --
I am trying to do some basic geocoding using the google maps API and a GWT dyanmic web project in Eclipse. For example, query the following URL:
…
0
votes
0answers
36 views
Spring Forms + GWT
I'd like to learn how to use Spring Forms and GWT. Basically my forms just ask for a bunch of links and you can submit them. The twist is that when I add a link I want it to be previewed (e.g print …
1
vote
4answers
176 views
GWT’s hosted mode not working
I've been stumped for a while trying to figure out why my GWT demo app isn't working in hosted mode so I went back and downloaded the Google Web Toolkit again, unzipped it and simply went to the …
1
vote
10answers
181 views
Writing Ajax code in JAVA
I want to write ajax code in java i.e. i want use the functionality of ajax without using ajax. I'm looking for some API of JAVA which can do so.
Like we post data of a web page through JAVA program …
0
votes
1answer
56 views
gwt request (via RequestBuilder) causing response to be treated as JavaScript
The following code
RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, URL.encode("http://localhost:8080/xxxx/yyyy"));
try {
Request request = builder.sendRequest(null, new …
46
votes
17answers
12k views
Which Javascript framework (jQuery vs Dojo vs … )?
There are a few Javascript frameworks/toolets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient; and
others I'm sure.
It certainly seems that jQuery is ascendant in …
0
votes
2answers
54 views
GWT check if flash is installed
Is there a way in GWT to check if the browser running is supporting Flash?
1
vote
3answers
75 views
Is it possible to create a purely client-side GWT application?
I'm fairly familiar with GWT - having completed the Eclipse-based tutorial. But the tutorial runs in client-server mode.
My question is: is it possible to create a GWT application that completely …
1
vote
4answers
89 views
Can GWT be made accessible for users with JavaScript disabled?
My question concerns Google Web Toolkit (GWT). I'm about to begin development for a project that will reside on an Intranet where some users may have JavaScript disabled. After seeing what GWT has …
1
vote
2answers
37 views
Concurrency Issue plotting google maps GeoCoder request on Google Maps Widget
My program has essentially 3 steps:
1) Query Geocoder object for some Coordinates and store them in a Collection
2) Send the results to my main module for plotting on a map
3) Plot them on a google …
