Google Web Toolkit Google Group:
I have no idea what you are asking, but you give no example of the problem. Since the Java compile is just a java compile (nothing GWT about it), I'm sure you can use import java.net.*; in your server side code. Google doe (Read More)
Google Web Toolkit Google Group:
How does it compare to the UIBinder in GWT 2? I've not used it yet, but understand it's an XML file format for building UIs. If they overlap, people will more likely prefer UIBinder, but if they do not, I'm sure others wou (Read More)
Google Web Toolkit Google Group:
Hi all, In my company, we have been working with GWT for almost a year, developing a ridesharing application ([link]). I really can't overstate how much we enjoy developing in java, using familiar tools, debugging in host (Read More)
Google Web Toolkit Google Group:
Ok, never mind... It was a regular GWT SerializationException which was getting swallowed up by ext-GWT widget code. Thanks, Yaakov. (Read More)
Google Web Toolkit Google Group:
I actually figured it out. It is actually a browser issue than a widget issue. I ended up creating a textarea within an htmlpanel so that I could apply the wrap=off parameter to the textarea. (Read More)
Google Web Toolkit Google Group:
That's because GWT actually load your app in a hidden iframe; because the iframe isn't in the same domain ("origin" actually) as your "host page", they cannot communicate. Let's rather call it a solution (*the* solution, a (Read More)
Google Web Toolkit Google Group:
That's right. For example, Apple Safari provides only a "Choose File" button. I have seen bizarre ways of overlapping s and using z-order to fake styling of file upload widgets, but you'll never get GWT do it. Probably, y (Read More)
Google Web Toolkit Google Group:
I am not new to programming, but I am new to web programming, Java and GWT, and this problem bugs the hell out of me. Going by the tutorials I have read, on the server side of a GWT application, you can do any Java operati (Read More)
Google Web Toolkit Google Group:
Be sure there are no null pointer errors and that all classes you serialize also have a no-arg constructor (that one gets me from time to time) even if you don't use it yourself (I have a lot of private constructors just fo (Read More)
Google Web Toolkit Google Group:
I call a GWT server method which executes perfectly and returns the desired object. But the on return the AsyncCallback enters onFailure method. There is no exception on the server end. On the client side I get the followi (Read More)
Google Web Toolkit Google Group:
OK. I made some progress. I added a couple properties to my model of type "List". Removing those allows the rest of the class to be serialized. I'm still not sure why those properties won't work. My guess is that since the (Read More)
Google Web Toolkit Google Group:
hello, I use macosx snow leopard with netbeans (the last one) and GWT with the plugin GWT4NB. I can't use the debugging from the java code, I have this error: ****************************** ****************************** (Read More)
Google Web Toolkit Google Group:
Hi Jacek, 1) war/WEB-INF/lib is the correct place. Could you describe when your JARs in there get deleted? Is it on any build (including Eclipse's incremental build) or only when you clean and do a full build? 2) There is (Read More)
Google Web Toolkit Google Group:
I like maven-emma-plugin or maven-cobertura-plugin -- Zeno Consulting, Inc. home: [link] blog: [link] p: 248.894.4922 f: 313.884.2977. (Read More)
techno.blog("Dion"):
“Just what the world needs—another sucky JavaScript library,” he said. When I asked him what made it ‘sucky’, he elaborated. “It’s a JavaScript library written by Java developers who clearly don’t get JavaScript.”This quote i (Read More)
Google Web Toolkit Google Group:
For an update, what I did is output the data to an xml file on the server, then fetch the data with a simple http GET using RequestBuilder. To deal with SOP, I had to put the xml file on the same domain as my shindig conta (Read More)
Google Web Toolkit Google Group:
Hi, I am trying to use jquery.corner.js to round my panel in gwt using the below code * public* *final* *native* *void* roundCorner()/*-{ $wnd.$("#roundedPanel").corner ("5px"); where "roundedPanel" is the id of the div (Read More)
Google Web Toolkit Google Group:
Stephen, You're most likely going to need to use the $wnd or $doc variable within your JSNI code as the Garmin JS is not loaded into the same area as GWT code ([link] DevGuideCodingBasics.html#DevG uideJavaScriptNativeInt (Read More)
Google Web Toolkit Google Group:
Have a question? Can some one please help me in creating an dynamic Image using the servlet output stream and display it in the GWT client. I am struck here and not able to proceed further.. This is really urgent. (Read More)
Google Web Toolkit Google Group:
HI.. Greetings... i am using GWT for one of my application development and found a problem where i cannot proceed further. I need to send a stream of bytes from the sever to the GWT client and create an image using the r (Read More)