Re: problem with css when deployed to app engine

2012-02-11 Thread toont...@googlemail.com
I encountered the same symptoms today. I worked around it by adding this to my page: Note that I'm using Google App Engine 1.6.1 and there is a discussion of this problem here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/cea6b9c7bbad50ba/b9081ae430584f5e On Feb 1

Re: Why does GWT's API differ so much from the Javascript one?

2011-11-13 Thread toont...@googlemail.com
Yes but it isn't clear how to share code between the client and server -- especially in the case the original poster mentioned: org.w3c.dom.* We were forced to wrap all the org.w3c.dom interfaces in classes that implement the com.google.gwt.client.xml interfaces. I understand that GWT can't implem

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread toont...@googlemail.com
On my Android (2.2 - Dell Streak) when I visit the URL I get Data connectivity problem The page contains too many server redirects. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@go

Are there any libraries for highlighting/pointing to/selective disabling of widgets?

2011-09-28 Thread toont...@googlemail.com
We have a Swing library (http://code.google.com/p/migen/source/browse/ trunk/java/src/uk/ac/lkl/common/ui/jft/) that is useful for implementing interactive tutorials and programmatic interface interventions (e.g. 'intelligent' help). We are wondering if there is anything close that works for GWT Wi

Is it possible for a button to generate a file and then load it into a new window?

2009-08-06 Thread toont...@googlemail.com
When I tried to do this I run into popup blockers because the code that opens the new window is in a callback that is run after a call to the server finishes. The user initiated the call to the server with a button click but because of the asynchronous callback browsers don't see this as user init

Problems with ImageBundle in IE8 when not in compatibility mode

2009-04-14 Thread toont...@googlemail.com
Greetings, Only in IE8 with compatibility mode off do I see the images in the ImageBundle displayed in the right location but other images from the bundle are displayed to the left of the displayed image. In other words it isn't clipping the bundle to the left. In compatibility mode it works fine

DisclosurePanel headerText limited to plain text?

2009-04-09 Thread toont...@googlemail.com
Greetings, I would like the headerText of a DisclosurePanel to be HTML. I tried disclosurePanel.setHeader(new HTML(headerText)); but then I lost the nice triangular icons. The default header widget seems only to have a HasText interface. I could make my own Widget with the DisclosurePanel ico

Problems adding listeners to a user-defined textarea

2009-02-15 Thread toont...@googlemail.com
I want to add listeners to some user-supplied HTML that has been added to the DOM. If I create a new TextArea it works but none of the user's properties or attributes carry over. If I create a FocusWidget or TextAreaBase with the user's Element all works well only in IE7. (No indication that eve