Re: Call external main program

2011-02-15 Thread AlexG
hi daniela, so, i guess you have a GWT-Web-App, and what you want to do, is to integrate a module (Java-Project) to this Web-App. If this is the case, you have to do it like this: - In your Java Project, create a .gwt.xml file, like you have one in your GWT-App. - Inherit this .gwt.xml file in

Re: Gwt 2.2, guice and gin...

2011-02-15 Thread Carlo Alberto Degli Atti
thanks leszek, but I'm experiencing this exception No implementation for javax.inject.Providercom.google.gwt.inject.rebind.GinjectorBindings was bound. while locating javax.inject.Providercom.google.gwt.inject.rebind.GinjectorBindings for parameter 4 at

Re: Create an Image from received bytes on client side - possible?

2011-02-15 Thread Matej Jelovcan
Just to report back my findings. In short: it works! So, thank you once more. Brgds, MJ On 2/15/11, Matej Jelovcan zuti...@gmail.com wrote: Thanks Sebastian. I'll give this a try before I go the pure URL way :) Thanks. On 2/14/11, Sebastian Rothbucher sebastian.rothbuc...@clarities.de

ui:msg for javascript

2011-02-15 Thread asianCoolz
let say i have short javascript snippet inside uibinder.ui.xml file. and i want to use i18n. how to pass the ui:msg into javascript? script uibinder.. html ui:msg key='something'.. /ui:msg script var messageis = how to pass the ui:msg into here /script /html -- You received this

Re: Network visualization with GWT

2011-02-15 Thread Thomas Broyer
I think I'd rather create a JSNI wrapper around http://thejit.org (would require much less work than what you're proposing I guess) -- 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: has this patch made it to 2.2

2011-02-15 Thread Thomas Broyer
No: http://code.google.com/p/google-web-toolkit/source/browse/tags/2.2.0/user/src/com/google/gwt/place/impl/AbstractPlaceHistoryMapper.java -- 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: CellTable:: Deselecting an already selected row

2011-02-15 Thread Thomas Broyer
On Tuesday, February 15, 2011 2:48:42 AM UTC+1, Jambi wrote: If you use a SingleSelectionModel, it's as easy as sm.setSelected(sm.getSelectedObject(), false) I am using this method on my CellTable and it works. But somehow I get always an com.google.gwt.event.shared.UmbrellaException:

Re: NullPointerException on stockwatcher tutorial

2011-02-15 Thread Basdl
Hi, try to debug the problem in development mode. If RootPanel.get(stockList) supplies null then your html may be wrong. When the exception occurs while calling add mainPanel might be null (don't know if this is permitted). Best regard, Basdl On Feb 13, 10:10 am, Eric penae...@gmail.com wrote:

Re: Object-backed ValueListBoxInteger Editor?

2011-02-15 Thread Thomas Broyer
How about making the Renderer? aware of the IceCreamProxy-s? When asked to render Integer(1), it would look up the IceCreamProxy with ID=Integer(1) and render it. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Create an Image from received bytes on client side - possible?

2011-02-15 Thread Thomas Broyer
On Tuesday, February 15, 2011 9:46:32 AM UTC+1, MJ wrote: Just to report back my findings. In short: it works! Except of course in IE6 and IE7 which do not support data: URLs; but it wouldn't stop me if I were you (kill IE, kill IE, kill IE!) ;-) -- You received this message because you

Re: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2011-02-15 Thread denis56
are you using external server and not embedded jetty. If so, you have to deploy your module in exploded mode, that is not compressed. Then point your devmode to the exploded folder on the server: -war /home/${env_var:USER}/your-exploded-web.war This allows using dev mode without having to

isDeployed function

2011-02-15 Thread Jan
Hi, I have some code on the server side of my application which should only be executed locally in development mode. Therefore I would like to have an isDeployed()-function to control whether or not it should be executed. Does anybody know of such a function or is there even a way to remove such

GWT projects/Eclipse being too slow

2011-02-15 Thread shahid
I am running my GWT projects using Eclipse Helios with GWT 2.1.0. I have got JRE6 installed. I often experience extremely slow Eclipse start up times. This morning it took me an hour to start up my GWT projects in Eclipse. I am running Windows 7 with a 3GB active memory. I wonder if anyone else

GWT 2.2 and WEB-INF/deploy

2011-02-15 Thread Filipe Sousa
Hi, I'm trying the new version of GWT (2.2) and noticed that after compiling the project I'm getting a deploy folder inside the WEB-INF. Do I have to pack this folder inside the war file? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: ui:msg for javascript

2011-02-15 Thread Thomas Broyer
On Tuesday, February 15, 2011 10:27:16 AM UTC+1, asianCoolz wrote: let say i have short javascript snippet inside uibinder.ui.xml file. Beware that it's likely to break sooner than later: Note: When inserted using the document.write() method, script elements execute (typically

Re: GWT projects/Eclipse being too slow

2011-02-15 Thread Thomas Broyer
Are you using the 2.2 version of the Google Plugin for Eclipse? (the version of the GWT SDK doesn't matter) If not, you might be running in to this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=5773 See also http://code.google.com/p/google-web-toolkit/issues/detail?id=5261

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread Alex Nederlof
I Got the same problem. I generated a new app with the new webAppCreator and it gives the same error. On Tue, Feb 15, 2011 at 7:46 AM, Brice Beaumesnil skalim...@gmail.comwrote: Hello, i just try GWT 2.2 on my project, i just change my POM file to use version 2.2 and when i try to compile i

adding gwt entry point to struts web project

2011-02-15 Thread mariyan nenchev
Hi, I have standard struts web project build with maven. I want to add one jps in this web project that hosts gwt entry point. For this I created separate project for my gwt stuff, which is also build with maven and produce .jar file (the jar is as lib and contains *.java). I added this jar (and

Re: Can CellWidgets contain custom composite widgets ?

2011-02-15 Thread Stephanie Brubaker
Cell support in UiBinder is not available in GWT 2.2, but it will be included in an upcoming release. Stay tuned! --Stephanie On Mon, Feb 14, 2011 at 6:56 AM, dilbert goran.stoj...@gmail.com wrote: Is the UiBinder variation available in GWT 2.2? If it is, is there any example on how to use

Re: Alignment of cells in a CompositeCell

2011-02-15 Thread Murali Krishna
Can't this be done using CellTree? On Mon, Feb 14, 2011 at 4:40 PM, John LaBanca jlaba...@google.com wrote: You could use a table structure and set the width of the first cell with the label: table style=table-layout:fixed; tr td width=20emLabel:/td td width=40emContent/td /tr

Network visualization with GWT

2011-02-15 Thread Daniel
I'd like to integrate network visualization into my GWT app. Here's what I've found thus far: *Drawing:* gwt graphics http://code.google.com/p/gwt-graphics/ *Network libraries:* graphviz http://www.graphviz.org (specifically neato for the layout) JUNG http://jung.sourceforge.net (doesn't work

ckeckbox in a cell

2011-02-15 Thread Nuvoletta
Hi, I need to create a table with a column of checkbox for delete correspondent row. How can I do that? -- 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

Jetty 7.2 continuation and gwt-rpc

2011-02-15 Thread Guy K Hillyer
JSR315 servlet 3.0 specifies a new async api that allows the suspension of a request. A servlet's doGet or doPost method can establish an async context and then return. The request is not completed at that time (no response is sent to the client/browser). Later a server event or a timeout can

ClientBundle images missing in IE8

2011-02-15 Thread socratesJ
Two of the images in a ClientBundle I'm using don't show up at all in IE8, but they show up fine in Firefox. Other images from this bundle work in IE8, so I'm not sure what the problem is. I've also discovered that if I replace the problematic images with images of the same size and same

Re: GPE auto-complete only partially working for UiBinder tags

2011-02-15 Thread Florin Malita
On Mon, Feb 14, 2011 at 5:41 PM, miller millermich...@gmail.com wrote: I have been seeing the same issue since loading the GWT Designer tools. I am still on 1.4.1.v201012170127. The warning says: Unhandled event loop exception The top of my stack trace is: java.lang.NullPointerException

Safari loses anchor on redirect

2011-02-15 Thread skatto
My GWT app redirect to a single-sign-on server for authentication. My problem is, on redirect, Safari drops the anchor(#) part of the url, causing bookmark to not work correctly. This works fine on other browser, like Firefox and Chrome. Has anyone encounter this problem, or better yet, a

AsyncCallback's onSuccess nor onFailure is getting called --Please help

2011-02-15 Thread kiran7...@gmail.com
Hi , I have a GWT Client , which is calling JDBC Code on server . The problem is that the after executing the method , AsyncCallback's success nor the failure is not being getting called , please help This is my EntryPoint class : Panel panel = RootPanel.get(); final ListBox lb = new ListBox();

Re: Problem with AsyncCallback onSuccess result is null

2011-02-15 Thread Basdl
Hi, the problem is in setHeadline in Purchase - it must be: public void setHeadline(String headline){ this.headline = headline; } Best regards, Basdl On Feb 13, 12:14 am, Bastian bastian.la...@hotmail.de wrote: Hello, I hope everyone is fine. I have started to use RPC’s with GWT. I have

GWT and Java 1.6

2011-02-15 Thread Johan
Hi, I get a error starting my GWT application from within Eclipse (acctually springsource tool suite). Compiling module com.dotoday.dataminer.Dataminer Validating newly compiled units [ERROR] Errors in 'file:/home/johan/Documents/workspace-

Re: Problem with AsyncCallback onSuccess result is null

2011-02-15 Thread Greg Dougherty
Is there some reason why you're implementing Serializable rather than IsSerializable? Have you taken care of all the fiddly bits you have to deal with to get Serializable to work with GWT?

Migrating from GWT 1.7 to GWT 2.x

2011-02-15 Thread Kwen K. Liu
Hi Guys, I have just got in hand a old version of a Gwt app that used GWT 1.7, currently I want to migrate it to GWT2.x( probably 2.2). I searched online but got nothing very useful, basically, I have tried to replace the old gwt-usr.jar gwt-servlet.jar in the build path with the corresponding

Re: NullPointerException on stockwatcher tutorial

2011-02-15 Thread iuiz
I got the same problem running the tutorial under ARCH Linux with Eclipse Helios, but without the App Engine. However I use gwt-2-2-0. -- 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: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread F. Lancer
Hi, Brice. Try to add 'gwt-dev-2.2.0.jar' to your project and rebuild. pom.xml: dependency groupIdcom.google.gwt/groupId artifactIdgwt-dev/artifactId version2.2.0/version typejar/type scopecompile/scope /dependency You will have [WARNING] Don't declare

ProxyEditView, ProxyRenderer etc...

2011-02-15 Thread George Moschovitis
The Expenses example uses classes/interfaces like: ProxyEditView, ProxyRenderer, etc... where can I find any documentation about these classes? thanks in advance, -g. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: isDeployed function

2011-02-15 Thread David Chandler
You can use GWT.isProdMode() /dmc On Tue, Feb 15, 2011 at 5:21 AM, Jan jan.morl...@googlemail.com wrote: Hi, I have some code on the server side of my application which should only be executed locally in development mode. Therefore I would like to have an isDeployed()-function to control

Re: GWT runasync

2011-02-15 Thread Gambo
Hi Ben, thanks a lot for your quick reply. I have one question(very basic :-)) how do I put them in a list without instantiating them? Just adding strings of the class names and later on using Class.forName(test).newInstance();?! On 14 Feb., 17:50, Ben Imp benlee...@gmail.com wrote: One way to

Re: Replace AbstractPlaceHistoryMapper with a custom mapper using deferred binding

2011-02-15 Thread David Chandler
Hi Karthik, Your replace-with and when-type-is classes are backwards here. But I think you'll need to replace the interface PlaceHistoryMapper instead of the abstract class with your own impl. This is an issue and patch to make this easier:

Re: GWT 2.2 and maven

2011-02-15 Thread David Chandler
It's in Maven Central now, no custom repo needed. See the Expenses sample POM for correct declaration of gwt-maven-plugin that works with 2.2.0: http://code.google.com/p/google-web-toolkit/source/browse/releases/2.2/samples/expenses/pom.xml /dmc On Mon, Feb 14, 2011 at 6:03 AM, Diego Lovison

Re: GWT 2.2 and maven

2011-02-15 Thread George Moschovitis
Great! What about compatible versions of Guice/GIN? -g. It's in Maven Central now, no custom repo needed. See the Expenses sample POM for correct declaration of gwt-maven-plugin that works with 2.2.0:

Re: How to disable the context menu

2011-02-15 Thread chm124
Hi if the code of the previous post shouldn't work, you can do something like: /* constructor */ public YourClass() { sinkEvents(Event.ONCONTEXTMENU); } @Override public void onBrowserEvent(Event theEvent) { int anEventType =

Re: Network visualization with GWT

2011-02-15 Thread Uemit
Apparently somebody wrote a small wrapper for InfoVis: https://groups.google.com/forum/#!searchin/javascript-information-visualization-toolkit/GWT/javascript-information-visualization-toolkit/8F3MmHz6-rA/h_a7Thtg07kJ http://weltermann17.wordpress.com/2009/07/02/jit-gwt-a-low-cost-solution-2/

Re: Network visualization with GWT

2011-02-15 Thread Thomas Broyer
On Tuesday, February 15, 2011 12:52:55 PM UTC+1, Uemit wrote: But as far as I know InfoVis uses canvas so it won't fit the requirements. The demos run OK in IE8, so they must be using some compat code for IE (excanvas.js?) -- You received this message because you are subscribed to the

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread skalimer0
OK, thanks i change scopetest/scope to scopecompile/scope for gwt-dev dependency and it's compile without error. -- 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

Re: GWT projects/Eclipse being too slow

2011-02-15 Thread shahid
Many Thanks Thomas. It seems that might be the problem as I have got a gigantic number of gwt-* folders and imageresource files in the Temp folder and it is already taking hours to just delete those. I will update this thread once I have successfully got rid of all and retried it. On Feb 15,

Editor and primitive types

2011-02-15 Thread monkeyboy
I have a simple class that contains an integer: class Whatever{ int theInteger; public int getTheInteger(){ return theInteger; } public void setTheInteger(int i){ theInteger = i; } // getters, setters, etc. } so I created an Editor like so: public class WhateverEditor extends

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread jonsm...@gmail.com
Another way to get this is mixing GWT Designer releases Uninstall: GWT Plugin GWT Designer WindowBuilder Then install: GWT Plugin That will clear out pieces of GWT Designer 8.1.1 that are mixed into the GWT 2.2 plugin release. On Mon, Feb 14, 2011 at 7:38 AM, WindowBuilder Support

Re: Editor and primitive types

2011-02-15 Thread monkeyboy
copy paste error. The error message should be: Found unexpected type int while evauating path theInteger using getter expression The unexpected type is int, not long. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: GWT 2.2 and WEB-INF/deploy

2011-02-15 Thread John
I'm also very curious as to the purpose of this folder. I have a multi-project setup, and all but one automatically has its own subfolder in deploy. I was very hopeful that the deploy folder would make actually deploying a multi-project app easier since right now it is immensely frustrating, but

Re: GWT projects/Eclipse being too slow

2011-02-15 Thread shahid
Ok that was the issue and deleting those Temp files have made a huge difference. Thanks again. On Feb 15, 12:30 pm, shahid shahidza...@gmail.com wrote: Many Thanks Thomas. It seems that might be the problem as I have got a gigantic number of gwt-* folders and imageresource files in the Temp

Re: Editor and primitive types

2011-02-15 Thread Thomas Broyer
The simple solution is to use GWT trunk: http://code.google.com/p/google-web-toolkit/issues/detail?id=5864q=editor%20primitive -- 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: Create an Image from received bytes on client side - possible?

2011-02-15 Thread Sripathi Krishnan
Except of course in IE6 and IE7 which do not support data: URLs; but it wouldn't stop me if I were you (kill IE, kill IE, kill IE!) ;-) And IE8 only supports 32KB of base64 data for security reasons, so you do have to watch the size of the image. --Sri On 15 February 2011 15:38, Thomas

Re: Network visualization with GWT

2011-02-15 Thread Uemit
@Thomas: You are right. It uses excanvas.js so it should also work with IE 9.0 versions. -- 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

Re: Editor and primitive types

2011-02-15 Thread monkeyboy
Thanks Thomas for the quick reply. So, if I got this right, with trunk I would not have to change my existing code, just use the trunk version? -- 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: GWT 2.2 and WEB-INF/deploy

2011-02-15 Thread Thomas Broyer
From the doc, you should deploy it (otherwise, why would it be emitted to the ${war}/WEB-INF?) http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/core/ext/linker/EmittedArtifact.Visibility.html#Deploy See also the doc for the -deploy command line argument: The directory

UIBinder: @UIField and the wrong template

2011-02-15 Thread Carlo Alberto Degli Atti
Hi all, I'm building some user interfaces using the UIBinder mechanism; I'm placing in the same package 6 views (java files) and 6 templates (xml). All views and templates are fine except one; my IDE (Eclipse) says Field itemPanel has no corresponding field in template file CommentView.ui.xml.

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread skalimer0
I install new Eclipse 3.6 with new GWT 2.2 import my CVS project... and when i try to open an Composite class of my projet in the new GWT Designer 2.2 i have this error : Stack trace: java.lang.NullPointerException at

Re: Error installing GWT 2.2 in eclipse 3.6

2011-02-15 Thread Chris Ramsdale
This was mentioned later in the thread, but you don't have to use the GWT Designer that is bundled with the Google Plugin for Eclipse. The standalone version (link below) will work just fine w/ the GWT 2.2 SDK. http://code.google.com/webtoolkit/tools/download-gwtdesigner.html The only

Re: Editor and primitive types

2011-02-15 Thread monkeyboy
The solution I will be using until GWT 2.3 (or whatever) comes out is to put another pair of getter/setters in my Whatever class like so: class Whatever{ int theInteger; public int getTheInteger(){ return theInteger; } public void setTheInteger(int i){ theInteger = i; }

Re: Error installing GWT 2.2 in eclipse 3.6

2011-02-15 Thread Chris Ramsdale
Alex, Can you tell us what components you currently have installed within Eclipse? (Install New Software... menu option, and then click on the already installed link) Thanks, Chris On Tue, Feb 15, 2011 at 2:48 AM, alexoffspring alessales...@gmail.comwrote: Thanks for your reply We will be

Re: GWT 2.2 and maven

2011-02-15 Thread David Chandler
It's up to the GIN and Guice open source projects when / if they'll push new maven artifacts. I'm sure those projects would be glad for volunteers. /dmc On Tue, Feb 15, 2011 at 6:30 AM, George Moschovitis george.moschovi...@gmail.com wrote: Great! What about compatible versions of

Re: GWT 2.2 and WEB-INF/deploy

2011-02-15 Thread Aurelian
I'm deploying my app on AppEngine and the deploy folder generated has 133M. AppEngine limits the upload of the folder war to 150M, so i had to generate it outside of war folder. My app is working, i think the deploy folder contains symbolicMap for logging system, in case there is a need to convert

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread Ernesto Reig
Same here. The error happens in all Uibinder templates even if you create a new one. But when you set up a new GWT project, and create a new UiBinder template, it works. I thought that there was some problem in GWT projects with 2.1 version migrating to 2.2, but the thing is that it gives the same

Does GWTTestCase work in noserver mode?

2011-02-15 Thread SVR
Does GWTTestcase work while not using the embedded server, that is while using the noserver option. If so, can somebody please share how to do this? thanks Vidhya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Network visualization with GWT

2011-02-15 Thread jscheller
On Feb 15, 4:52 am, Uemit uemit.se...@gmail.com wrote: or Raphael (http://raphaeljs.com/) but I don't think they provide a GWT wrapper. I've been using the RaphaelGWT wrapper the Hydro4GE guys built with pretty good cross-browser results... http://code.google.com/p/raphaelgwt/ -- You

Re: ckeckbox in a cell

2011-02-15 Thread John LaBanca
Create a Column with a CheckboxCell. In the Column, set the FieldUpdater, which is invoked when the checkbox is selected. Thanks, John LaBanca jlaba...@google.com On Tue, Feb 15, 2011 at 4:11 AM, Nuvoletta effimer...@gmail.com wrote: Hi, I need to create a table with a column of checkbox for

Re: ValueProxy.EntityProxy.field problem on setViolations()

2011-02-15 Thread Y2i
After upgrading to GWT 2.2.0 everything works fine. Thanks GWT team! -- 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: how to ensure a single EntityManager per request?

2011-02-15 Thread KaffeineComa
Hi Y2i, I applied your suggestion and it does indeed work, thank you. Details (including code) of what I am currently using are available herehttp://stackoverflow.com/questions/4988397/gwt-requestfactory-how-to-use-single-entitymanager-per-request/5006347#5006347 . Thanks -- You received

Object 44 has no method 'round' in Chrome Dev version

2011-02-15 Thread Amir
My GWT code at this web page used to work fine on Chrome: http://dropzap.appspot.com Why does it no longer work in the dev channel of Chrome? The following error results: Object 44 has no method 'round' The problem still happens with the latest version of GWT (2.2.0). -- You received this

Re: radio button listener/handler issue on IE8.

2011-02-15 Thread Ben Imp
Use Firebug Lite, or IE's development tools to look at the names on the elements. That should give you the answers. -Ben On Feb 14, 2:24 pm, NAARAYANA REDDY NANDIGAMA nandigam...@gmail.com wrote: Yes it was assigned to different names. Here is the logic to set group names. String groupName

Re: GWT runasync

2011-02-15 Thread Ben Imp
Ewww. Icky. I'm not actually even sure if that works in GWT ... If you really need them in a list, you could probably write a fairly thin wrapper for your views. Im not sure what their interface is like, but if they are in a list, they can't be specific types anyway. Something like: public

Re: ValueProxy.EntityProxy.field problem on setViolations()

2011-02-15 Thread Y2i
Oops, sorry I ran a wrong test. It is still not working when editing nested structures. But thanks for GWT 2.2.0 anyway :-) -- 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: has this patch made it to 2.2

2011-02-15 Thread karthik reddy
thanks Thomas. Just wondering: this is a vary valid case and the patch seems to have been submitted by you well ahead of the 2.2 release(thanks to you once again). Are you aware of any reason why this has not made it to the 2.2 release. -- You received this message because you are

Re: how to ensure a single EntityManager per request?

2011-02-15 Thread Y2i
Nice. You may consider moving doFilter() into the try block so that em closes and tx rolls back on all exceptions thrown by doFilter() -- 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: GWT 2.2 and maven

2011-02-15 Thread Thomas Broyer
A GIN 1.5 version should be out soon (requiring Guice 3.0rc2) See https://groups.google.com/d/topic/google-gin/FZ2MeAY39O8/discussion -- 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: how to ensure a single EntityManager per request?

2011-02-15 Thread KaffeineComa
Ah, good catch. Example updated, thanks. -- 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: Does GWTTestCase work in noserver mode?

2011-02-15 Thread Thomas Broyer
No. The browser has to communicate test results back to the JUnitShell, which it does through GWT-RPC. For integration tests, you should probably have a look at Selenium tests rather than GWTTestCase. -- You received this message because you are subscribed to the Google Groups Google Web

Re: IE problems

2011-02-15 Thread SVR
Hi On Debugging I found the problem occurs in initWidget(binder.createAndBindUi(this)); (I am using uibinder). The code works in firefox, however in IE I get the following exception: Failed to create an instance of 'com.google.gwt.user.client.ui.Button' via deferred binding -- exception:

Re: GWT 2.2 Eclipse update fails -- needs PDE

2011-02-15 Thread Tim McCormack
On Feb 14, 7:23 pm, Rajeev Dayal rda...@google.com wrote: If you navigate to Help - Software Updates, what Update Sites are listed there? The listing is below. I note that only a few are marked for being used in installation of new software; I selected all and refreshed, but that didn't help.

replacement for String.format in GWT?

2011-02-15 Thread Magnus
Hi, I need String.format: String r = String.format(%2d %2d:%2d:%2d,d,h,m,s); Since GWT does not support this method: What can I do instead? Magnus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Need some generalized advice

2011-02-15 Thread Nate
I'm not a programmer by title although it is in my job description. We fly sensors in an aircraft and are in the process of upgrading the system from one computer that does everything to a distributed system that uses small Linux computers (PC-104) with one (controller) providing the GUI and user

CellTable, possible to addRow() instead of addColumn() in some way ?

2011-02-15 Thread Fille
Hello I wanna be able to add rows instead of columns. So i want the cells to lay out horizontally rather than vertically. Any option to do this, or should i use another type of Widget ? Regards, Filip -- You received this message because you are subscribed to the Google Groups Google Web

Re: how to customize celltree.

2011-02-15 Thread icemaker
Hello, The cell tree get all it resources (images and css) from CellTree.BasicResources which extends CellTree.Resources. To use your own images and css you have to extend CellTree.Resources. Ex: interface TreeResources extends CellTree.Resources { @Source(cellTreeClosedItem.gif)

Re: Need some generalized advice

2011-02-15 Thread Jeff Chimene
On 02/15/2011 07:56 AM, Nate wrote: I'm not a programmer by title although it is in my job description. We fly sensors in an aircraft and are in the process of upgrading the system from one computer that does everything to a distributed system that uses small Linux computers (PC-104) with one

Re: ClientBundle images missing in IE8

2011-02-15 Thread socratesJ
I've determined that this problem only occurs if IE8 is in standards mode; that is, if I use a doctype such as !DOCTYPE HTML PUBLIC -// W3C//DTD HTML 4.01//EN as opposed to not specifying a doctype (which puts the browser in quirks mode). However, I need to use standards mode, so I'd still like

Re: how to ensure a single EntityManager per request?

2011-02-15 Thread FrugoFrog
I may be wrong but guice JpaPersistModule works the same. + you get benefits of @Transactional. Anyway good work I'm sure people will find it useful cheers 2011/2/15 KaffeineComa kaffeinec...@gmail.com: Ah, good catch.  Example updated, thanks. -- You received this message because you are

Re: Need some generalized advice

2011-02-15 Thread Y2i
It's way too early to be thinking about GWT. I second that. A lot depends on the node that is supposed to provide the GUI. The node has to run a web server, but the kind of the web server depends on the node environment and your requirements. Does the node have Java runtime? If not

Re: Need some generalized advice

2011-02-15 Thread Robert Lockwood
A little more information: I work for a US Government Agency - there is no money. The controller will be a PC104 computer, the OS will probably be Ubuntu Server, I will be using Java for my server side apps. The Server will support a GUI that will have a few buttons, at least one for each sensor,

Re: Need some generalized advice

2011-02-15 Thread Robert Lockwood
The computers will arrive with Ubuntu SE installed but we can change that. I think that Apache is included, I'll need to check when I get back to the office. Any free server would do. On Tue, Feb 15, 2011 at 11:34 AM, Y2i yur...@gmail.com wrote: It's way too early to be thinking about GWT.

Re: UI Binder File Not Loaded During Runtime

2011-02-15 Thread Nick Apperley
Interestingly enough if I adjust the code to only attach a Label to RootLayoutPanel in the onModuleLoad method no compilation is done, and nothing is displayed on the web page. This is weird since a minor change has been made to the code, even if nothing was displayed Firefox should freeze to

Re: UI Binder File Not Loaded During Runtime

2011-02-15 Thread Jeff Larsen
Are you working in offline mode? That happened to me earlier today. -- 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: UI Binder File Not Loaded During Runtime

2011-02-15 Thread Nick Apperley
Not in offline mode. Anyway I have recreated the project as a new Web Application (the Google one) project in Eclipse. Compilation works normally but now I have an exception appearing in development mode, which didn't occur previously with the old project type (GWT Java).

Re: Need some generalized advice

2011-02-15 Thread Y2i
Since your GUI computer has Java run-time then you can use servlet-based environment. Servlet-based web-servers will simplify a lot if you are planning to use GWT because GWT provides great servlet integration (GWT-RPC and GWT Request Factory). And there are many web-servers to chose from.

Re: UI Binder File Not Loaded During Runtime

2011-02-15 Thread Nick Apperley
Based on the exception the problem occurs when the login page (a Composite) is being added to the RootLayoutPanel. On Feb 16, 10:17 am, Nick Apperley napper...@gmail.com wrote: Not in offline mode. Anyway I have recreated the project as a new Web Application (the Google one) project in

Re: replacement for String.format in GWT?

2011-02-15 Thread Ben Imp
If you are trying to format a date, which appears to be the case, you can use DateTimeFormat. -Ben On Feb 15, 12:36 pm, Magnus alpineblas...@googlemail.com wrote: Hi, I need String.format: String r = String.format(%2d %2d:%2d:%2d,d,h,m,s); Since GWT does not support this method: What can

Problems installing today

2011-02-15 Thread Nate
I'm running Eclipse Helios on my iMac. Today I installed GWT after I created a new project for it I selected Debug-Web Application and received a source not found error: Thread [main] (Suspended (exception ClassNotFoundException)) URLClassLoader$1.run() line: 202

Re: UI Binder File Not Loaded During Runtime

2011-02-15 Thread Nick Apperley
Something is not being initialized properly (most likely the Composite). Shouldn't the server take care of this? On Feb 16, 10:23 am, Nick Apperley napper...@gmail.com wrote: Based on the exception the problem occurs when the login page (a Composite) is being added to the RootLayoutPanel. --

Re: GWT 2.2 and WEB-INF/deploy

2011-02-15 Thread Filipe Sousa
On Tuesday, February 15, 2011 1:59:01 PM UTC, Thomas Broyer wrote: From the doc, you should deploy it (otherwise, why would it be emitted to the ${war}/WEB-INF?) that's a good question.

UiBinder doesn't autocomplete anymore in Eclipse

2011-02-15 Thread pete
Hallo, since I updated my Google-Plugin with the last GWT 2.2 release, for some reason the autocomplete in UiBinder templates doesn't work anymore in my Eclipse 3.5 If I press control + space, I see possibilities (e.g. when providing a path) but if I click on a possibility, it doesn't get filled

Re: UiBinder doesn't autocomplete anymore in Eclipse

2011-02-15 Thread Jeff Chimene
On 02/15/2011 03:16 PM, pete wrote: Hallo, since I updated my Google-Plugin with the last GWT 2.2 release, for some reason the autocomplete in UiBinder templates doesn't work anymore in my Eclipse 3.5 If I press control + space, I see possibilities (e.g. when providing a path) but if I

Re: Can't work with GWT Designer

2011-02-15 Thread Eric Clayberg
To completely uninstall the old version of GWT Designer, go to Help About Installation Details Installed Software, select all of the GWT Designer / WindowBuilder v8.1.x components (everything with a 8.1.x version tag), and click Uninstall. -Eric -- You received this message because you are

  1   2   >