Re: gwt

2011-12-31 Thread Ian Bambury
Can you be a bit more specific - what exactly are you trying to do? setFocus will move the focus to whatever you choose. Ian On 31 December 2011 05:50, Amrutha Thomas amrutha.tho...@gmail.com wrote: but how can I change focus from one text box to another using this On Fri, Dec 30, 2011 at

does gwt support web socket?

2011-12-31 Thread wahaha
does gwt support web socket? have some APIs? -- 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@googlegroups.com. To unsubscribe from this group, send email to

Re: DataGrid vs CellTable

2011-12-31 Thread Thomas Broyer
DataGrid and CellTable both display data in similar ways; but DataGrid has fixed column headers with scrollable content (have a look at the Showcase: http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable vs. http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid ) Note

Re: gwt

2011-12-31 Thread Ed Bras
Only one element can have focus, so setting focus on another will automatically blur the other. On Sat, Dec 31, 2011 at 9:35 AM, Ian Bambury ianbamb...@gmail.com wrote: Can you be a bit more specific - what exactly are you trying to do? setFocus will move the focus to whatever you choose.

Re: Abridged summary of google-web-toolkit@googlegroups.com - 25 Messages in 15 Topics

2011-12-31 Thread xavier . ivanez
NOUVEAU - BORE@L INFORMATIQUE INTEGRE JPA CONSULTANTS Afin de mieux vous servir, nos deux sociétés ont décidé de réunir leurs compétences et leur professionnalisme sous le nom de JPA CONSULTANTS SA . Par ce partenariat, nous nous améliorerons sur les points suivants : • Logiciel :

Re: Cannot install Eclipse GWT (and other Google)-plug-ins

2011-12-31 Thread Thad
I have Oracle's JDK 1.6.0_29 installed on Windows 7. I've installed Eclipse 3.7. The ONLY portion from the link below that installs is GWT Designer for GPE. For ALL other components I'm told they can't be found. For example: Cannot complete the install because one or more required items could

Re: Cannot install Eclipse GWT (and other Google)-plug-ins

2011-12-31 Thread Ian Bambury
What version of Eclipse are you using? As I said, the only one that would work for me was the Java EE. On 31 December 2011 14:27, Thad thad.humphr...@gmail.com wrote: I have Oracle's JDK 1.6.0_29 installed on Windows 7. I've installed Eclipse 3.7. The ONLY portion from the link below that

Re: GWT application freezes when new version is deployed while using it

2011-12-31 Thread Kyle Baley
Thomas, In the case of code-splitting, it sometimes doesn't make RPC calls when the user navigates around. Rather, it tries to load the .cache.js files required for the page the user is navigating to. In the case where a new version is deployed and the user hasn't refreshed, these files of

Re: Cannot install Eclipse GWT (and other Google)-plug-ins

2011-12-31 Thread Thad
Eclipse IDE for Java Developers, which is all I've ever used on Linux. I've tried both 3.6 and 3.7. I've been trying with the 64-bit version which matches my JDK. I've removed all Eclipse folders and downloads from this Windows box and will try again (at least I hope I've gotten them all, even

Re: Cannot install Eclipse GWT (and other Google)-plug-ins

2011-12-31 Thread Thad
AT LAST! And getting the GWT stuff installed in Eclipse seems to have fixed the problem I linked to in my last message. However this was not without some pain: Eclipse insisted that there are no GWT SDKs in your build path and that two references to GWT.getModuleName() in a .ui.xml file were

Re: Deferred binding failed for ClientFactory

2011-12-31 Thread Thad
Fixed. While wrestling with this, I've also been trying and failing to get the GWT plugin to install (see http://groups.google.com/group/google-web-toolkit/browse_thread/thread/ab1e73188746862c). On another user's recommendation I installed Eclipse 3.7 for EE (removing all previous Eclipse

GWT i18n - locale set by property provider is not reflected at the client side

2011-12-31 Thread Shaik Muhammad
I am setting the locale value using the property provider( returns value dynamically based on certain conditions). This class is called every time the browser issues a new request. But the UI is not rendered with the locale returned by the property provider. If the property provider returns

does lazy loading OneToMany Relationship fails RequestFactory proxies?

2011-12-31 Thread Elhanan
hi.. i'm trying use an entity employee which has JobHistory entities related to it..i should add that although jobHistory is considered an entity, it has an embeddedId which is a dervied from manytoOne relationships. anyway i tried using eager loading, but it still doesn't work. i get this:

Re: A new-comer nightmare, the learning curve and best-practices

2011-12-31 Thread Elhanan
well first off i'm not sure how RequestFactory is related to spring, it is more related to orm frameworks integration into GWT. actually GWT has a lot more integration with gin (the client side of guice in gwt) and guice then spring, (unless i'm wrong, but i saw a lot more frameworks using it

Re: Something other than a Java object was returned from JSNI method

2011-12-31 Thread Ian Bambury
Hi Thomas, thanks for the welcome back! It appears that there are two issues for me, not one - the one you kindly gave me the link to (I had actually looked at it, but didn't get any further than the first entry because the version was so old) - and the other is the random history

Re: GWT application freezes when new version is deployed while using it

2011-12-31 Thread Thomas Broyer
runAsync are not expected to do RPC, these are separated concerns. But you pass a RunAsyncCallback to GWT.runAsync(), and the onFailure of this callback is indeed called when the fragment cannot be loaded. -- You received this message because you are subscribed to the Google Groups Google Web

Re: does lazy loading OneToMany Relationship fails RequestFactory proxies?

2011-12-31 Thread Thomas Broyer
On Saturday, December 31, 2011 9:08:50 PM UTC+1, Elhanan wrote: hi.. i'm trying use an entity employee which has JobHistory entities related to it..i should add that although jobHistory is considered an entity, it has an embeddedId which is a dervied from manytoOne relationships.

Image border

2011-12-31 Thread Pavel Byles
Is there a way to remove the default border from a gwt image widget? in my css I have: img { border: none; } Yet nothing changes. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Image border

2011-12-31 Thread Ashwin Desikan
How are you adding the image? Using the URL property or as background image via CSS property? If u load it using URL property it does not show the border. ~Ashwin Sent from my iPhone On Jan 1, 2012, at 8:38 AM, Pavel Byles pavelby...@gmail.com wrote: Is there a way to remove the default

Re: does lazy loading OneToMany Relationship fails RequestFactory proxies?

2011-12-31 Thread Elhanan Maayan
ok, they really REALLY need to fix that thing, i changed the directory of .apt_generated to .apt_gen and got an exception on the serve side (some stupid bug in eclipse link which doesn't make it compatible with jpa), i dunno if this was the original problem, but after fixing it still get the

Re: does lazy loading OneToMany Relationship fails RequestFactory proxies?

2011-12-31 Thread Elhanan Maayan
check that, actually i a slightly different error only difference is instead of JobHistory, i get JobHistoryPk can't be sent to the client. On Sun, Jan 1, 2012 at 7:56 AM, Elhanan Maayan elh.maa...@gmail.com wrote: ok, they really REALLY need to fix that thing, i changed the directory of

Re: [gwt-contrib] ResourceOracleImpl.onRefresh Question

2011-12-31 Thread Toby Reyelts
There's a known issue, in at least Sun's JDK and OpenJDK, where ClassLoader lookups are O(N) of the entries on the classpath. GWT can perform a very large number of lookups, so it's especially affected. One way to workaround this is to collapse multiple classpath entries into a single jar or