gwt

Should I use Vaadin Framework

I just tried to play with Vaadin Framework and it seems to me very easy to use. Plus what I like about his framework is that it is built on top of GWT. What do you think, should I continue using this framework or it's better to stick with GWT. ...

Are there good tutorials on how to modify Google GWT styles?

I'm interested in GWT but find the default styles so ugly. I know CSS, but have no big idea about how to modify the GWT styles technically. A tutorial on this would be great. ...

Which Eclipse version should I use for Google GWT and Google App Engine development?

Ganymede, probably. But there are so many different ones. Any idea? ...

Is Eclipse Galileo compatible to Google Plugin for Eclipse?

They don't seem to mention which Eclipse Version must be used... ...

Appengine and GWT - feeding the python some java

I realize this is a dated question since appengine now comes in java, but I have a python appengine app that I want to access via GWT. Python is just better for server-side text processing (using pyparsing of course!). I have tried to interpret GWT's client-side RPC and that is convoluted since there is no python counterpart (python-gw...

How to configure Tomcat to run an Google App Engine + GWT application on Mac OS X?

Does anyone know a good tutorial on this? What Tomcat version must be used? ...

EXT-GWT Portal: How to get all Portlets?

Hi all this is my first Question here! Im just making my first steps with (Ext-) GWT. I´m testing the Ext-GWT libraries and really: These are absolute great! Now my question: Is it possible to make a kind of "clear-Portal" or "hide all portles" for a defined Portal? Or have i always manually clear the portal like in my example code abov...

How can I run the example project of Google App Engine + GWT in Eclipse?

Ive installed the Google Plugin for Eclipse and created a demo project using App Engine and GWT. Now I want to launch and see it. But after compile nothing else happens. Shouldn't there be an integrated browser that shows the app? ...

are there video training or tutorial videos on gwt + app engine?

i want to learn it! please if you know good videos, post links. Want to do it with Java, since I know already a little bit about it. ...

Which JavaScript framework is generally used for high performance websites?

There are different JavaScript frameworks like jQuery, Dojo, mooTools, Google Web Toolkit(GWT), YUI, etc. Which one from this is suitable for high performance websites? ...

ImageButton in gwt

I have to create a image button in gwt which uses three images(left side image,center stretch image and right image).Left side images and right images having rounded corners.Center Image wants to be stretched depends on button title size.Created ImageButton should have all the functionalities of Button. Can anyone help me in how to achi...

Zend framework with GWT?

I have been experimenting with GWT recently and I really like it and would like to use it. Problem is I don't use Java on the server side, but PHP Zend Framework. Google shows up nothing, so I am asking here - is anyone using the two together, what are the best practices (ProtocolBuffers, gwt rpc...). Is it possible at all with current...

How to use GWT on mobile devices?

hi I have a fairly large web application developed with GWT (and EJB). However on mobile devices (like windows mobile, black berry and such) the GWT start page remains simply white. I'm using GWT 1.6 and also tried 1.7 but nothing helps. It seems that the java script isn't executing and also isn't the noscript tag. Do you know how to ...

Now with GWT 2, what are the advantages over wicket and likewise?

Apart from the argument of Wicket's simplicity (that is, Wicket is a simpler system IMHO) and GWT's responsiveness in the client (GWT's client side state and JavaScript - potentially complex client side code) and GWT's greater potential for scaling, what is the argument for using GWT over Wicket? Personally I've done a lot of Wicket dev...

Ext-GWT TreeGrid indirectly calls a GWT-RPC callback? Why?

I am using GWT-RPC to populate Ext-GWT TreeGrids with data from a server. I am using 4 callbacks to populate 6 TreeGrids. As the callback onSuccess function modifies the TreeGrid by inserting rows, the TreeGridView needs to render the rows. The callback class is called MainPnlSummaryTablesAsyncCallback. For some reason, when it needs...

Gwt-Ext grid inside Gwt-Ext ColumnTree

I need to display a Gwt-Ext grid as a a node of a Gwt-Ext ColumnTree. The idea is that if the user expand an item they would see a grid with headers with items under the headers. Any ideas? ...

Gwt 1.6 in Intellij Idea 8.1

Hi! I'm try configure gwt app for debug in Idea. Seems there is no native support in Idea, so I try configure "Java application" manually. I'm set: Main class: com.google.gwt.dev.HostedMode Vm parameters: -Xmx256m Program parameters: -startupUrl test.html ru.shirtmaker.Test Check to use classpath from current module. But when I run ap...

Why should I use jQuery instead of GWT?

I need to decide between jQuery and GWT for my new project. I haven't programmed in JavaScript for a while and I was looking into GWT for the last few days and it looks pretty awesome generating all the different JS for different browsers and all...but it takes more time developing in Java than the same thing using jQuery at least for t...

How do I store arbitrary data in a GWT widget?

I'm creating a table using GWT, and in certain cells of the table, I want to store a piece of data in that cell's Widget for use in the Widget's handler callback. I can't seem to find an API method such as widget.setData(key, value);. How do I (or can I) accomplish this? ...

Best Persistence API for use with GWT

What is the best persistence API for use with GWT? Sadly, the application will be hosted on my own java server, as I will need more control than GAE will give me. I know I will need to have two sets of my entities, one for the server side, and some pojo's for the client side. I'm looking to make the mapping of the data as simple as...