Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread Luc Claes
The two GWT founders, Bruce Johnson and Joel Webber, have left Google and are creating a new startup: http://www.monetology.com/team On Thursday, April 19, 2012 9:11:38 PM UTC+2, Supercobra Thatbytes wrote: > > Obviously something is happening. > > One of the first thing you do as a team lead of

logging jobs run by executor service

2012-04-19 Thread Sam W
Hello gwt users, I can see my usual stderr messages from my default gwt classes. However, if I use the Executor Service to run the jobs, the stderr messages seems to get lost in limbo. I am using standard java logging classes. Is this a limitation of gwt/tomcat, or simply my misconfigurations?

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread Deepak Singh
GWT 2.5 was supposed to be released in first quarter of 2012 which already passed. Anybody knows why it was not released yet? On Fri, Apr 20, 2012 at 12:45 AM, Alan Chaney wrote: > Interesting idea, but the issue is that Oracle is suing Google over its > use of Dalvik in Android - the basis of

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread Alan Chaney
Interesting idea, but the issue is that Oracle is suing Google over its use of Dalvik in Android - the basis of the case is that Dalvik breaks the licensing terms of a JDK. Although I totally agree that this may well spread FUD in the long term which will cost Oracle more that it makes out of t

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread Supercobra Thatbytes
Obviously something is happening. One of the first thing you do as a team lead of a project that is going to "disappear" is to remove the developer relations people and reassign team members, which both have been happening in the GWT team. David Chandler, GWT developer relations left the team (

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread Blake McBride
I have an additional comment. Although I see Google dropping GWT when Dart becomes ready for prime time, I believe GWT will live on as a community project. Additionally, given Google's internal use of GWT, Google is likely to at least minimally support GWT (for its own needs at least) for a consi

Re: Avoiding DTOs in RPC

2012-04-19 Thread Sebastian Gurin
In a project of mine I successfully use THE SAME classes both as hibernate model and as GWT client model class using simple GWT RPC for client-server comunication: A couple of things I remember are: 1) I needed to put my DAO model classes in gwt "client" package because I work directly with th

Re: How to track native browser scroll up-down movement

2012-04-19 Thread Deepak Singh
I got to know about the scrollbar event but could not achieve the result as desired. Can anyone help me with css ? On Wed, Apr 18, 2012 at 3:54 AM, Aidan O'Kelly wrote: > I have not used this, but: > > http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/Window.

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread Blake McBride
Here is my own personal opinion about what is going on. Initially Google was totally dedicated to GWT. It is a great platform loved by Google and many others. Oracle is suing Google over Java. Google doesn't know where this is going to end and is, quite frankly, sick of the idea that Oracle cou

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Colin Alworth
I think it'd be a little too specialized for ClientBundle itself to support such a thing - that said, a custom *ClientBundleGenerator subclass could be used in conjunction with file naming conventions to work this out. The basic idea would need to be that each file has one of several suffixes, a

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Evan Ruff
Colin, This seems to be similar to Jens suggestion. I just read over the Appearance Pattern information and it seems like it would be quite a lot of code for every Widget in the application. Are you suggesting that the ImageBundle itself have an appearance abstraction, or that each Widget have

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Colin Alworth
You could wrap them up as a TextResource in your ClientBundle and inject them into the page, but Android 1-3's Browser doesn't support SVG, nor do IE versions prior to 9. On Thursday, April 19, 2012 12:38:54 PM UTC-5, Evan Ruff wrote: > > Joe, > > SVG would be awesome if my sources were vectors.

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Evan Ruff
Joe, SVG would be awesome if my sources were vectors. By the time the images have gotten to me, they're bitmaps. Does GWT support SVG in client bundles? Thanks, E On Tuesday, April 17, 2012 10:21:31 PM UTC-4, Joseph Lust wrote: > > Note quite what you're looking for, but why not use SVG for m

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Evan Ruff
Am, This is essentially what I want to do, but with a more refined, reusable approach. One thing that I've found is very helpful with the Android framework, is it has some built in failover type stuff. So if I have an hdpi asset, but no corresponding asset in the ldpi directory, it will just u

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Jens
> > Shouldn't the image size remain constant with screen resolution? > Otherwise there would be a similar need on desktops. Are you specifying > image size in pixels? Could you use percent? > Apples HiDPI devices double every pixel so that the appearance of the web application remains the s

Re: Avoiding DTOs in RPC

2012-04-19 Thread Alfredo Quiroga-Villamil
Additional thoughts below: "My approach has been to create DTOs for each case. I was now thinking of using the JPA relationships and lazy loading instead" I would recommend to go the "lazy loading" route in this case. I think having a unique DTO will make things easier to maintain instead of crea

Re: Avoiding DTOs in RPC

2012-04-19 Thread Jens
I think GWT-RPC will skip null fields when building the payload. But I would better ask if your JPA entity is serializable so you can share it between GWT and your server. JPA entities will be enhanced by the JPA provider and lazy fields can typically only be accessed while your persistence se

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Mike Dee
Shouldn't the image size remain constant with screen resolution? Otherwise there would be a similar need on desktops. Are you specifying image size in pixels? Could you use percent? Mike On Tuesday, April 17, 2012 2:21:41 AM UTC-7, Evan Ruff wrote: > Hey guys, > > > So I'm designing an a

Re: Recruiting

2012-04-19 Thread Mike Dee
I've had the same problem. Put a post in gwt jobs group, but little response. Difficult to find good developers and gwt, in particular. Mike On Wednesday, April 18, 2012 1:17:52 AM UTC-7, Thomas Lefort wrote: > Hi Thanks. I did try (this is what I called the dedicated group) and > got a couple

Re: Avoiding DTOs in RPC

2012-04-19 Thread Thomas Broyer
On Thursday, April 19, 2012 5:46:07 PM UTC+2, Thomas Lefort wrote: > > I want to avoid having to use DTOs for transferring my Users with RPC. > Basically I have a number of rpc calls for my users, and based on the > configuration and the user rights, etc... there is a number of fields I > want t

Avoiding DTOs in RPC

2012-04-19 Thread Thomas Lefort
I want to avoid having to use DTOs for transferring my Users with RPC. Basically I have a number of rpc calls for my users, and based on the configuration and the user rights, etc... there is a number of fields I want to hide. My approach has been to create DTOs for each case. I was now thinking

Re: UIBinder

2012-04-19 Thread Thomas Lefort
Sure, I'll try to do that tonight On Wednesday, 18 April 2012 18:55:13 UTC+2, Thomas Broyer wrote: > > > > On Wednesday, April 18, 2012 6:36:44 PM UTC+2, Thomas Lefort wrote: >> >> One word of advice as I spent a couple of hours on this. DO NOT name >> (ui:field) your widgets "template". This cau

Re: RequestFactory/Editor AutoBean has been frozen error

2012-04-19 Thread Tiago Rinck Caveden
Hello all, I tried to reply to the message below in its own thread (here: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/4309e1e60f2cb8d8?pli=1 ), but I was getting an error at every attempt, so I decided to open a new topic with the same title. It seems this useful workar

Re: Error when trying to create HTML in GWT2.4

2012-04-19 Thread Jens
There is an issue for it on the issue tracker: http://code.google.com/p/google-web-toolkit/issues/detail?id=6338 I also had this problem but with the most recent Eclipse (Indigo Service Release 2) and GWT Plugin (2.5.2.v201203300216-rel-r37) I don't have that issue anymore (OS X). Maybe time to

Re: Error when trying to create HTML in GWT2.4

2012-04-19 Thread Qian Qiao
On Thu, Apr 19, 2012 at 23:02, SCK wrote: > Hi > I'm trying to create HTML page and I get an error : Unhandled event > Loop exception. I need help to fix this problem. > > Thks How about a minimal code snippet to reproduce the problem? -- You received this message because you are subscribed to

Error when trying to create HTML in GWT2.4

2012-04-19 Thread SCK
Hi I'm trying to create HTML page and I get an error : Unhandled event Loop exception. I need help to fix this problem. Thks -- 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@googlegro

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-19 Thread July
+1 On Wednesday, April 18, 2012 4:48:52 AM UTC+8, emurmur wrote: > > I'm one of the fence sitters. > > I have been using Flex/Flash, which has been fantastic, but has no > future on the mobile web. I think there are only two mature tools > that would allow me to create similarly rich applicat

Re: how to make a clickable image cell?

2012-04-19 Thread Thomas Broyer
On Thursday, April 19, 2012 9:45:40 AM UTC+2, tong123123 wrote: > > I want to make a column of clickable image inside a celltable, if user > click the image, a new tab page is created. > the problem is how to make such a clickable image cell column? > How about https://www.google.fr/search?q=

Re: how to make a clickable image cell?

2012-04-19 Thread tanteanni
Should be possible with ActionCell or ButtonCell. The image could be easily added via render method. look at examples on gwt showcase like this . An image could be added to every kind of cell i think (from example): String imageHt

how to make a clickable image cell?

2012-04-19 Thread tong123123
I want to make a column of clickable image inside a celltable, if user click the image, a new tab page is created. the problem is how to make such a clickable image cell column? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view th