How to save data for both GAE and Tomcat?

2013-04-26 Thread membersound
Hi, I'm in the start of integrating some storage system for my pet project. During development I'm using GAE. Someday I'm gonna release the app probably to a Tomcat server. Is the GWT Datastore limited to be used with GAE? If so, is there any storage technique I can use on both servers?

Re: How to save data for both GAE and Tomcat?

2013-04-26 Thread Ashwin Desikan
Gwt and gae are two different entities. Yea they r from Google so you can expect them to work well together. You can use GWt with any database. membersound kodyreco...@gmail.com wrote: Hi, I'm in the start of integrating some storage system for my pet project. During development I'm

Re: Theme GWT, how does it works?

2013-04-26 Thread sebastien . ribeil
If I delete: inherits name='com.google.gwt.user.theme.clean.Clean'/ inherits name='com.google.gwt.user.theme.standard.Standard'/ and if I run the project with eclipse, my project just use the CSS. And if I copy the same project on the server, the CSS doesn't do anything. In fact, if I

Re: Theme GWT, how does it works?

2013-04-26 Thread Jens
First you only need one theme, either Standard or Clean. After you have compiled your app to Javascript, your war/WebContent folder should have a folder with the name of your GWT module and inside that folder there should be all the compiled JS files (hash.cache.html) and a folder called gwt

Startupurl when having maven structure

2013-04-26 Thread Kris
Hi, when running in dev mode I get problem with the startup url.. I have a maven struture, so the html file is in src/main/webapp. see attached pic... But I get a HTTP ERROR: 404 NOT_FOUND RequestURI=/ppmock.html *Powered by Jetty:// http://jetty.mortbay.org/* What should the

Re: Startupurl when having maven structure

2013-04-26 Thread Juan Pablo Gardella
Try http://localhost:port/yourfile.html in startupUrl 2013/4/26 Kris kli...@gmail.com Hi, when running in dev mode I get problem with the startup url.. I have a maven struture, so the html file is in src/main/webapp. see attached pic... But I get a HTTP ERROR: 404 NOT_FOUND

Re: Startupurl when having maven structure

2013-04-26 Thread Thomas Broyer
On Friday, April 26, 2013 7:58:16 PM UTC+2, Kris wrote: Hi, when running in dev mode I get problem with the startup url.. I have a maven struture, so the html file is in src/main/webapp. see attached pic... But I get a HTTP ERROR: 404 NOT_FOUND RequestURI=/ppmock.html

How to execute periodic timers on the server side GAE?

2013-04-26 Thread membersound
Hi, how can I schedule a periodic timer (every X minutes) on the serverside? I have a ScheduledExecutorService, but discovered that I cannot use this on GAE serverside. Is there any possibility to create a schedule task that just runs in the background, without having to trigger it explicit

UiField cellBrowser with 'provided = true' was null

2013-04-26 Thread Kris
When running in dev mode I get : Caused by: java.lang.AssertionError: UiField cellBrowser with 'provided = true' was null at

Re: UiField cellBrowser with 'provided = true' was null

2013-04-26 Thread Jens
You have to create cellBrowser before calling uiBinder.createAndBindUi(this). -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: UiField cellBrowser with 'provided = true' was null

2013-04-26 Thread Kris
Isn't that what I am doing here... cellBrowser = builder.build(); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: UiField cellBrowser with 'provided = true' was null

2013-04-26 Thread Kris
This is actually working... I had that before I changed the code after going through a tutorial.. public class PrintProviderCellBrowser extends Composite { private final PrintProviderMockServiceAsync ppmockService = GWT.create(PrintProviderMockService.class); interface Binder extends

Re: UiField cellBrowser with 'provided = true' was null

2013-04-26 Thread Jens
Hehe I didn't read to the bottom because the first line in your constructor is already initWidget(uiBinder.createAndBindUi(this)); Delete the first line and it should work. -- J. Am Freitag, 26. April 2013 21:52:09 UTC+2 schrieb Kris: Isn't that what I am doing here... cellBrowser =

Re: UiField cellBrowser with 'provided = true' was null

2013-04-26 Thread Kris
ahh I see it... :) has uiBinder.createAndBindUi(this) twice initWidget(uiBinder.createAndBindUi(this)); has to be after creating the cellbrowser. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: IE10 support in Gwt

2013-04-26 Thread Colin Alworth
In most cases that is true, but CssResource is an interesting exception. The fallback rules work by looking to see if there is no implementation for a particular value, and if not, looking to see if there *is* an implementation for some other value. In the case of ClientBundle and

java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2013-04-26 Thread Kris
Hi, I have a class path problem. Using eclipse juno, maven plugin and gwt plugin. In my gwt server code I use slf4j. When doing something on the gui that makes a RPC I get.. java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory My project has a maven structure, and has dependency

Re: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2013-04-26 Thread Kris
Actually it is caused by... Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

In the suggest box, is there a way to avoid highlighting the matched letter?

2013-04-26 Thread Mohammad Al-Quraian
As it says in the title, is there an easy way? Because it doesn't look very pretty in the Arabic language. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

New To GWT: Objects in composite object not aligned correctly

2013-04-26 Thread Chris Brown
I created a composite object for a date range that is supposed to be all bottom aligned. My text boxes are not aligned with my listbox and it's driving me crazy. Thanks for the help. import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client.ui.HasVerticalAlignment;

GWT 2.5.1 - Incubator Deprecated Classes

2013-04-26 Thread Sivakumar Natarajan
We are migrating one of our web projects written in gwt 2.4.0 to 2.5.1. We see that the gwt-incubator classes has been deprecated in 2.5.1. We could nt find the alternative classes for the corresponding incubator classes which were working fine with 2.4.1 version in the maven pom. Once we

Re: Parametrized Css class

2013-04-26 Thread Goktug Gokdogan
For anyone waiting for this; Sorry guys, priorities are changed and it doesn't look like I will be able to work on it anytime soon :( Feel free to give it a try yourself send a patch; I'll try to help you out along the way. On Tue, Jan 29, 2013 at 12:56 PM, Rob rob.fergu...@uptick.com.au

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-04-26 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 1: (3 comments) Why couldn't we just make Composite (and ResizeComposite) generic rather than introducing

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-04-26 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 1: Thomas, I sent an email to gwt contributors list that discusses the advantages and disadvantages.

[gwt-contrib] Change in gwt[master]: Fixes a missing flow in DataflowOptimizer that might cause i...

2013-04-26 Thread Roberto Lublinerman
Roberto Lublinerman has abandoned this change. Change subject: Fixes a missing flow in DataflowOptimizer that might cause incorrect code. .. Abandoned Submitted, thanks! -- To view, visit

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-04-26 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 1: (6 comments) Just to be clear, I'm not oppose to add generics to Composite itself. I'm just