help with serialization

2010-05-22 Thread rjcarr
I have a really old GWT project and I've been using GWT for many years now, but I need a little guidance on how this works. I have a serializable data structure (DTO) that I've been passing via rpc and it's been working great. However, there are a number of things I'd like to keep in this data st

Re: gwt 2.1 M1 and css -moz-border-radius

2010-05-22 Thread Thomas Broyer
On 22 mai, 23:05, Sripathi Krishnan wrote: > Thomas, > > Isn't this the issue > youare > speaking about? I have been following that issue, and I thought they > fixed it by modifying the flute source code. Oh yeah, right! That's

widget invisible after AbsolutePanel.SetWidgetPosistion(widget,x,y)

2010-05-22 Thread outsource lucas
I added a widget (a vertical panel with a few buttons) to an absolutepanel, this displays the widget at (0,0). After calling AbsolutePanel.SetWidgetPosistion(widget,x,y) for the first time (from a button handler) the widget dissappears. why does this happen? what did i forget? do I have to set t

Re: gwt 2.1 M1 and css -moz-border-radius

2010-05-22 Thread federico
On 2.0.3 it was working the problems appear now that i'm trying 2.1 M1 On 22 Mag, 23:05, Sripathi Krishnan wrote: > Thomas, > > Isn't this the issue > youare > speaking about? I have been following that issue, and I thought they

Re: gwt 2.1 M1 and css -moz-border-radius

2010-05-22 Thread Sripathi Krishnan
Thomas, Isn't this the issue youare speaking about? I have been following that issue, and I thought they fixed it by modifying the flute source code. I'm still stuck on older version of GWT, so haven't really tried this myself. Doe

Re: UIBinder and dynamic tables

2010-05-22 Thread Thomas Broyer
On 21 mai, 09:58, trisk3ll wrote: > Hi, > > I'm trying to create a simple table in UIBinder, then iterate through > a set of objects creating a row for each object. Ideally, there would > be some sort of loop construct in UIBinder? Or some way to bind a > table to an array of objects? > > I gues

Re: gwt 2.1 M1 and css -moz-border-radius

2010-05-22 Thread Thomas Broyer
On 22 mai, 16:48, federico wrote: > I all > i've downloaded gwt 2.1 m1 to give it a try but i've noticed that all > my rouded corners css are gone, and there are some loggings > complaining abouut the styles: > > 16:24:19.843 [DEBUG] [sandboxDeploy] Preparing method css > 16:24:19.843 [INFO] [sa

Re: HTML5 Worker

2010-05-22 Thread Thomas Broyer
On 22 mai, 19:14, Stefan Bachert wrote: > Hi, > > I just read something about HTML5 feature. > One is "Worker". > Does this mean that in future we need to take care about concurrency > in GWT? No. Web Workers don't share memory, they communicate through messages. JavaScript is inherently single

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-22 Thread Jeff Chimene
On 05/22/2010 09:04 AM, PhilBeaudoin wrote: > From what I understand GWT's MVP classes are designed with SpringRoo's > automatic code generation in mind. As such, they might be a little > confusing for those of us who learned MVP's from Ray Ryan's talk and > Google's mvp-architecture documents. >

HTML5 Worker

2010-05-22 Thread Stefan Bachert
Hi, I just read something about HTML5 feature. One is "Worker". Does this mean that in future we need to take care about concurrency in GWT? Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to thi

GWT RPC and GoDaddy

2010-05-22 Thread Mike Apolis
Hi, I've deployed the sample Stock Watcher app to my GoDaddy Hosting site, and I get the error below. I've tried compiling the Project in Eclipse with JRE 1.5 because my Host is using jre 1.5. I think the issue is the "gwt-servlet.jar" is not compatible with jre 1.5. Can anyone confirm this. T

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-22 Thread PhilBeaudoin
>From what I understand GWT's MVP classes are designed with SpringRoo's automatic code generation in mind. As such, they might be a little confusing for those of us who learned MVP's from Ray Ryan's talk and Google's mvp-architecture documents. A gwt-platform user has given SpringRoo + GWT's MVP c

Where to put class decelerations that are used in the datastore and RPC

2010-05-22 Thread Michael
Hi, I have a number of class decelerations, most are passed between client and server via RPC AND used in the data store (Objectify). Some just get used in on but not the other. The stock watcher demo for RPC puts the class that is passed back and fourth in the .client path, but wouldn't it be b

Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-22 Thread Robnauticus-
I am using "Oracle DB Java Edition" http://www.oracle.com/database/berkeley-db/je/index.html HTH, Rob On May 21, 8:21 am, Navigateur wrote: > Robonauticus, which object db are you using? db4o? > > On May 21, 3:50 pm, Robnauticus- wrote: > > > > > > > Hello, > > I have completed a GWT / Hib

gwt 2.1 M1 and css -moz-border-radius

2010-05-22 Thread federico
I all i've downloaded gwt 2.1 m1 to give it a try but i've noticed that all my rouded corners css are gone, and there are some loggings complaining abouut the styles: 16:24:19.843 [DEBUG] [sandboxDeploy] Preparing method css 16:24:19.843 [INFO] [sandboxDeploy] The following problems were detected

New session created on server side for every RPC request.

2010-05-22 Thread DK
I have a session attribute thats set in the session when a user logs in (ex profile bean). once logged in, I have an RPC call to a remote service that tries to pull information from this session bean and do additional work. I noticed that a new session id was being generated when I make the RPC cal

Re: GWT Hibernate Project Structure

2010-05-22 Thread Gabriel
Hi, Do you have a reason for splitting the application into two projects? If not, there is nothing preventing you from using a single project for both client and server. If you do need to have two projects, you can use two (server and client) or three (server, client and common) modules under one

Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-22 Thread Navigateur
Thanks Manoj! So I was wondering, is it feasable to use Spring Roo with GWT 2.0.3 (for spring roo to do the persistence bit with e.g. Hibernate?) or is it necessary to use GWT 2.1 M1? I'm thinking of doing both Spring Roo Hibernate and db4o versions and commenting out one to test the performance o

Re: ScrollPanel not displaying contents in nested DockLayoutPanels

2010-05-22 Thread Mike
Thanks. I guess one should not put DockLayoutPanel into ScrollPanel, it just does make much sense even if relative positioning is out of the way. The reason this situation happened in my application is that I have a standard top-level layout with ScrollPanel being its main container. I shall use La

Re: how to customize the Button class (with skins)

2010-05-22 Thread outsource lucas
thanks, this is a nice start (i'm new to gwt), i'm already digging into the source code of the project you suggested On Fri, May 21, 2010 at 10:43 PM, Gabriel wrote: > I suggest you take a look at this: http://code.google.com/p/cobogw/ > One of the widgets is a pretty customizable button - see t

Re: Data Presentation Widgets reference

2010-05-22 Thread jonbbbb
I think two of the new classes are: CellList and CellTable, java docs for these classes are in GWT 2.1 M1. However I would also like some more info on these new features like an example, but it will probably come when they release it. Regards, Jon Berg. On May 21, 5:21 pm, yii wrote: > Where to