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

2012-04-12 Thread dominikz
For over a year I was trying to convince my customers (that I develop programs for) to use GWT with their SAP system. The technologies available over there are WebDynpro for ABAP or Business Server Pages, which do not even know what AJAX is. In January I managed to do that. We just finished

Re: AutoBean encoding on server-side with overriden method causes duplicate key

2012-04-12 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=5926 I had the issue with RequestFactory proxies but I suppose it applies to all autobeans (as on of the culprits was ProxyAutoBean). I hope it'll make it into the upcoming GWT 2.5 release. On Thursday, April 12, 2012 1:02:37 AM

resize celltable column by user using mouse

2012-04-12 Thread tong123123
how to allow user to just use the mouse to drag the column widths to a desired size by grabbing an edge of the header with the mouse? in gwt 2.4 developer guide, it just tell set table layout to fixed and then set the column width in code, but I want allow user can drag the column width with

about table layout to fixed

2012-04-12 Thread tong123123
in gwt developer guide, it said In order to gain fine-grain control over the width of columns, you must set the table layout to fixed by passing true into CellTable.setWidth(String,

Re: about table layout to fixed

2012-04-12 Thread tong123123
how about if four column, two column width is fixed and two column width is relative (each is 50%), if the content is longer than the relative width of these columns, the content will wrap to next line, but not truncate, is this possible? On Thursday, April 12, 2012 6:15:40 PM UTC+8,

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

2012-04-12 Thread Frank
GWT will also not go away... If you have downloaded GWT on your computer you just can keep using it even years after Google has dropped GWT... Just like you still can program in QuickBasic or something. GWT doesn't need anything from Google on the web to operate. I will just keep using GWT if

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

2012-04-12 Thread massimo malvestio
In my opinion Dart is overstimated by Google, I can't see why competitors like Microsoft and Mozilla should give a hand to Dart.. Just because Google says it can be better than javascript? Chrome can be one of the best browser on the market, and it can be the most used, but it will never be the

Mode hosted with another server than Jetty ?

2012-04-12 Thread Celinio
Hi, does anyone know how to start an application in hosted mode (development) with another server than the embbeded one which is Jetty ? With the gwt-maven-plugin plugin, there are several options/parameters/mojos to launch the goal gwt:run (-Dnoserver, -Dport ...) and there are probably some

Re: Mode hosted with another server than Jetty ?

2012-04-12 Thread Raphael André Bauer
On Thu, Apr 12, 2012 at 4:02 PM, Celinio cel...@gmail.com wrote: Hi, does anyone know how to start an application in hosted mode (development) with another server than the embbeded one which is Jetty ? With the gwt-maven-plugin plugin,  there are several options/parameters/mojos to launch the

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

2012-04-12 Thread Jmscavaleiro
+1 On Apr 2, 4:19 pm, Joshua Kappon shuky.kap...@gmail.com wrote: With the rise of the new developers.google.com, and with Google trying to rally up developers using Google technologies and products, and the rise of Dart and unclear future of GWT, I think it's about time that Google will

Re: Cloning EntityProxies

2012-04-12 Thread gwtomni gwtomni
try with this: AutoBeanT oldBean = AutoBeanUtils.getAutoBean(oldProxy); AutoBeanT newBean = AutoBeanUtils.getAutoBean(newProxy); AutoBeanCodex.decodeInto(AutoBeanCodex.encode(oldBean), newBean); newProxy = newBean.as();

IE8 getUserAgent returns Safari

2012-04-12 Thread skippy
I am trying to remove functions that don't work in Safari, but the IE8 user agent comes back with the word Safari in it. Window.Navigator.getUserAgent().contains(Safari) in IE* its true. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: resize celltable column by user using mouse

2012-04-12 Thread Andrea Boscolo
It's not possible using the current API. See http://code.google.com/p/google-web-toolkit/issues/detail?id=6401 for a couple of useful workarounds. On Thursday, April 12, 2012 11:17:41 AM UTC+2, tong123123 wrote: how to allow user to just use the mouse to drag the column widths to a desired

Re: IE8 getUserAgent returns Safari

2012-04-12 Thread Jens
Probably Chrome Frame installed in IE? http://www.chromium.org/developers/how-tos/chrome-frame-getting-started/understanding-chrome-frame-user-agent -- J. Am Donnerstag, 12. April 2012 20:13:49 UTC+2 schrieb skippy: I am trying to remove functions that don't work in Safari, but the IE8

Re: GWT 2.5 and beyond

2012-04-12 Thread Handw
That's amazing! On Saturday, March 31, 2012 10:07:49 AM UTC-4, Thomas Broyer wrote: On Saturday, March 31, 2012 4:00:56 PM UTC+2, supercobra wrote: The GWT PR machine has been offline for a year now. As it seems, the GWT engineers have been either working hard on a big and long project

Re: IE8 getUserAgent returns Safari

2012-04-12 Thread skippy
Yes I do, now what? On Apr 12, 1:23 pm, Jens jens.nehlme...@gmail.com wrote: Probably Chrome Frame installed in IE? http://www.chromium.org/developers/how-tos/chrome-frame-getting-start... -- J. Am Donnerstag, 12. April 2012 20:13:49 UTC+2 schrieb skippy: I am trying to remove

Re: GWT UIBinder remember username password

2012-04-12 Thread Markandayarushi Pamu
Thx for the reply .. Same things I am doing ...I put the hidden textboxes username and password in my jsp page which is the first page of my application. But still same problem I am facing .it is asking the prompt to remember password, but when I type user name it is not

Re: IE8 getUserAgent returns Safari

2012-04-12 Thread skippy
This seems to work. if (Window.Navigator.getUserAgent().contains(Safari) ! Window.Navigator.getUserAgent().contains(Chrome)) { setSafari(true); } On Apr 12, 1:34 pm, skippy al.leh...@fisglobal.com wrote: Yes I do, now what? On Apr 12, 1:23 pm, Jens jens.nehlme...@gmail.com wrote:

[gwt-contrib] Re: Issue 7230: allow absolute paths in ui:style's src= (issue1660804)

2012-04-12 Thread t . broyer
https://gwt-code-reviews.appspot.com/1660804/diff/1/user/src/com/google/gwt/uibinder/rebind/model/ImplicitCssResource.java File user/src/com/google/gwt/uibinder/rebind/model/ImplicitCssResource.java (right):