Re: Sending long parameter via cross-site JSON

2009-09-27 Thread Gintare Ragaisiene
I found such solution: 1) split long text into array Arr of shorter strings 2) go through for loop of Arr and send Arr[i] texts with index i as parameter 3) store into database fragmets of text with sequenseNo = i; 4) when you need to get all text get all text from sequenced fragments. Still do

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 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 determine if you

Re: CustomButton rollover effects fail when ON_MOUSE_OUT is never fired

2009-09-27 Thread Vlad Skarzhevskyy
I also can see the same effect. The HoveringFace of PushButton remains active if you quickly move the mouse cursor over the buttons. (in all browsers including Chrome). I used images from ImageBundle to construct the buttons. Since all methods in CustomButton are package you can override the beh

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 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- > windows-0.0.0.zip which I inst

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 (

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 10

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 wrote: > Hi, > I have similar requirement. Anyone who implement this? > > Regards > Hlun > > On Thu, Sep 24, 2009 at 5:36 PM, Gintare Ragaisiene < > > > > gintare.

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=value1¶m2=value2#?param3=value3¶m4=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 provides you

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 y

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 Hiberna

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" wrote: > One or the other -- "GWT in Practice," or "GWT in Action" has a > chapter on emulating s

Re: can i cancel request?

2009-09-27 Thread Thomas Broyer
On 26 sep, 20:48, Henrique Miranda 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 don't ask me more, I

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 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 have with GET urls.

Re: list serialization

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

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 wrote: > Hi, > > Quick question about

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: 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 T