Re: GWT Hosted Mode With Sub Projects

2012-12-03 Thread Callist
So I added the source for the sub project and I am still receiving the same error - any ideas? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT Hosted Mode With Sub Projects

2012-12-03 Thread Jens
I have - app (inherits common) - common and the run configuration for running App's DevMode contains the following User Entries: - src - /app/ - src - /common/ - app (the eclipse project) If you have super-source folders and/or generated-source folders (e.g. result of annotation processing)

Re: GWT Hosted Mode With Sub Projects

2012-12-03 Thread Callist
Ah, I thought I was adding the src to the right location.. however upon seeing your diagram it became more apparent. I finally have it working - thank you very much! On Monday, 3 December 2012 09:42:07 UTC, Jens wrote: I have - app (inherits common) - common and the run configuration for

Re: DataGrid vs CellTable

2012-12-03 Thread Tony B
Well, that makes sense, I guess. Granted, I don't know what size to expect, thus the percentage :-). I cannot just assume a PC browser, but also need to plan for mobile devices. There is a really good example out there (

Re: Dialog Box Appears Behind Another Widget

2012-12-03 Thread Francois ANDRE
Hi, I've had the same issue with gwt-openLayers and DialogBox. The solution I've found was to force the dialogBox z-Index to a high value: final DialogBox box = new DialogBox(); box.getElement().getStyle().setProperty(zIndex, ); It has worked for me. François Le lundi 15 décembre 2008

Re: Server class 'XXX' could not be found in the web app, but was found on the system classpath

2012-12-03 Thread Luis Estrada
hank a lot, I have been a case very similar. El jueves, 12 de julio de 2012 13:31:51 UTC-5, joerg.h...@googlemail.com escribió: I installed m2e-wtp ( http://download.jboss.org/jbosstools/updates/m2eclipse-wtp/) and the problem is fixed. -- You received this message because you are

Checking client-side code compilation before deployment

2012-12-03 Thread Murray Cumming
I occasionally use API in my client or shared code that is not supported by GWT's Java-to-Javascript compiler. But I usually only notice this when I try to run it in a browser, via mvn gwt:run (I use maven), when I see some error about Gwt.Bridge being unable to instantiate something. These

Re: DataGrid vs CellTable

2012-12-03 Thread Chris Lercher
The 100% won't help you, because the FlowPanel (which contains your DataGrid as I understand it) has a height of 0 unless you fill it with widgets that mount their own height. In other words, you are creating a cycle: The FlowPanel asks its children for the height they need, and the child

Re: DataGrid vs CellTable

2012-12-03 Thread Tony B
Thanks so much. That makes a lot of sense. So I just need to experiment with the data grid height. I would think using using *com.google.gwt.user.client.ui.ScrollPanel* instead would fix this, but it does not. I am still going to play with various height values, but just seemed weird

Re: Debug GWT in JBOSS

2012-12-03 Thread James
I am running Jboss 5 with Struts 1 and 2 at Java 6. I can display a right page by invoking http://127.0.0.1/service/gwtlocal/approval.jsp?profileUid=255309;. But if I run the same url under GWT code server like

Re: RFC 1867-compatibe File Upload

2012-12-03 Thread Shawn Quinn
The GWT Uploader project also provides callbacks for file upload progress events, all on the client side: http://www.moxiegroup.com/moxieapps/gwt-uploader/ Thanks, -Shawn On Monday, January 25, 2010 11:26:05 AM UTC-5, CI-CUBE wrote: Hi @ all, I'm looking for an RFC 1867-compatible,

file upload path gives full path

2012-12-03 Thread sreenivas
Hi, I am uploading a file to server. when from firefox , it is giving only the file name, when i access through fileItem.getName(). But with chrome it is coming something like this. c:/fakepath/fileName. How to avoid this fakepath string to come to server and get only the file name? Thanks,

Re: file upload path gives full path

2012-12-03 Thread Markus
Hi, we simply clear the filename: if (filename.contains(/)) { filename = filename.substring(filename.lastIndexOf('/') + 1); } if (filename.contains(\\)) { filename = filename.substring(filename.lastIndexOf('\\') + 1); } -- You received this message because you are subscribed to the

Re: [gwt-contrib] Continuous integration testing for GWT/Gerrit?

2012-12-03 Thread Manuel Carrasco Moñino
Hi Matthew, I have worked with CI for a long and I know well Jenkins since I maintain a couple of plugins. I can help if you want to consider it. Cheers - Manolo On Mon, Nov 5, 2012 at 7:42 PM, Matthew Dempsky mdemp...@google.com wrote: So I think an important next step for moving forward with