Re: Help - my web site based on GWT fails to load in IE8

2009-09-27 Thread Itzik Yatom
Thanks Dave Still fails. In my case adding the meta tag has no influence, although my web site doesn't fail with REAL IE7 Itzik On 25 ספטמבר, 21:57, t.dave da...@lorgeousdays.com wrote: i had IE8 issues when it first came out.  i'm still on GWT 1.5.3 - thought later versions should play

Re: Help - my web site based on GWT fails to load in IE8

2009-09-27 Thread Itzik Yatom
It is working! I use Canvas class and it doesn't work in IE8, I have disabled, temporarily, the canvas object and it works. Now I need to find another implementation for what I did with the Canvas. There is an old open issue about this - http://code.google.com/p/gwt-canvas/issues/detail?id=12

Re: help on my small project

2009-09-27 Thread mdwarne
I use a deckpanel to hold all my pages. For example deckPanel.showWidget(0) // Show My Welcome/Login page deckPanel.showWidget(1) // Show page 1 of application. deckpanel.showWidget(2) // Show another page of the app etc. Each Page is some type of Panel, with other widgets on it. Successful

Re: list serialization

2009-09-27 Thread mirceade
I'm using list of serializables just fine (it only shows some warnings since gwt 1.6) because my domain classes are not ready to inherit some strange superclass just for gwt ser. to work. So I guess you're using 1.5 or lower. On Sep 25, 6:06 pm, mwaschkowski mwaschkow...@gmail.com wrote: Hi,

Re: list serialization

2009-09-27 Thread mirceade
PS: list of objects also works in 1.6. On Sep 25, 6:06 pm, mwaschkowski mwaschkow...@gmail.com wrote: Hi, Quick question about serialization: If I have something to be serialized with the following type defined:   private ListObject resultList gwt gives me a serialization error, but if

Re: Is it possible to have history with the normal GET url format

2009-09-27 Thread Thomas Broyer
On 27 sep, 02:36, Jaap jaap.hait...@gmail.com wrote: The way I understand it you can history in your gwt app by using a history token which is displayed as follows in the URL http://www.example.com/#token I actually need a combination of tokens and prefer to use the normal syntax you

Re: can i cancel request?

2009-09-27 Thread Thomas Broyer
On 26 sep, 20:48, Henrique Miranda hsdmira...@gmail.com wrote: I'm uploading a file but i want can cancel this upload. how can i do it? I would like to know how can i canel a request? Have a look at http://code.google.com/p/gwtupload/ which has an Uploader#cancel() (I've never used it, so

Re: How can GWT handle real time data?

2009-09-27 Thread Evan Ruff
I'll second Wil here. Comet is the way to go. I like running a separate meteor server on an alternate sub-domain to get around the whole blocking issue as well. E On Sep 25, 3:08 pm, wil.pannell wil.pann...@pepsiamericas.com wrote: One or the other -- GWT in Practice, or GWT in Action has a

Re: advantages of hibernate

2009-09-27 Thread Evan Ruff
CES, There is a hibernate connector out there for GWT called Gilead: http://noon.gilead.free.fr/gilead/ . I've used the library to quickly get started with the project; however, from a performance standpoint I never felt that it was good enough for actual production deployment. Now I'm no

Re: advantages of hibernate

2009-09-27 Thread PJ Gray
Hello, I was in a similar situationlots of technology around and everyone seems to talk about hibernate.As far as I can tell, the advantages are being able to refer to your objects AS OBJECTS, yet have them persisted in the database. ie: you don't have to write the code to persist them

Re: Is it possible to have history with the normal GET url format

2009-09-27 Thread Sripathi Krishnan
You can still have 'query parameters' in the history token. http://mywebsite.com?param1=value1param2=value2#?param3=value3param4=value4 - The above url is an example. param1 and param2 are the only ones that will be available to you on server side via request.getParameter. - GWT

Re: Sending long parameter via cross-site JSON

2009-09-27 Thread Ben
Is it possible to move this into body instead of put it in parameter? I think that is a good way to go. On Sep 26, 12:57 am, Hlunboi hlungu...@gmail.com wrote: Hi, I have similar requirement. Anyone who implement this? Regards Hlun On Thu, Sep 24, 2009 at 5:36 PM, Gintare Ragaisiene

GWT state management in multiple modules across web-pages

2009-09-27 Thread AndrewG
I am looking at modifying a (largely) JSF-based web application to use GWT. I have done some preliminary experiments which have been quite successful so far - in providing a richer UI and better user experience. The main issue that I see at the moment is that the current application has approx

Problem loading GWT Module - $stats not defined

2009-09-27 Thread BR
I have a couple of GWT module which I deploy inside a Confluence page (the Wiki from Atlassian). I am currently testing on the latest 3.1 release of Confluence, and ran into an issue which is a - a serious blocker for me - seems worthy of consideration as an issue for GWT This is with Mac OS X

Re: swt-win32-3235.dll

2009-09-27 Thread John (Eric) Hamacher
I told you I was new! Copied the two dll files in the zip file to the 0.0.0 directory. Thanks. On Sep 25, 3:54 pm, badgerduke badgerd...@gmail.com wrote: Today I built GWT from the trunk.  I'm baffled by the following error when I build my project.  This file is present in gwt-

Re: dialog box background - BUG?

2009-09-27 Thread John V Denley
OK, thanks Isaac, Ill try to get onto that tomorrow On Sep 17, 3:47 pm, Isaac Truett itru...@gmail.com wrote: John, The first step in reporting a bug is to create the smallest possible piece of code that reproduces the problem. You can post that code here and the group can help you