Re: How to redefine standard.css ?

2010-01-09 Thread Ista Pouss
... you'll have to disable it there. On Jan 7, 11:26 pm, Ista Pouss ista...@gmail.com wrote: Hi, I have a little application (a diaporama) in GWT. I should want distribute this application. But GWT put standard.css at the end of css declarations, so it remove all specifics css. How

How to redefine standard.css ?

2010-01-08 Thread Ista Pouss
Hi, I have a little application (a diaporama) in GWT. I should want distribute this application. But GWT put standard.css at the end of css declarations, so it remove all specifics css. How is it possible to modify that ? I have read How to disable standard css at

Show errors ?

2009-12-16 Thread Ista Pouss
Hi, What are the best practices to show errors and exception messages with gwt in the browser (in my case firefox please) ? i should want publics messages and some traces messages. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

My first deploy

2009-12-16 Thread Ista Pouss
Hi, I have my little gwt application with eclipse, and I copy the directory app in place my little web site in local, I modify index.html with gwt things, i lauch it... and I see : GWT module 'diap' may need to be (re)compiled What is that ? I've seen

Re: My first deploy

2009-12-16 Thread Ista Pouss
, Dec 16, 2009 at 4:52 AM, Ista Pouss ista...@gmail.com wrote: Hi, I have my little gwt application with eclipse, and I copy the directory app in place my little web site in local, I modify index.html with gwt things, i lauch it... and I see : GWT module 'diap' may need to be (re)compiled

How to handle bad url on images ?

2009-12-16 Thread Ista Pouss
Hi, I make a new Image(url) with a bad url, and I see nothing (of course) in the browser. I should want a cool error message, but I don't see any exception in this case, and if I put a LoadHandler I have no onLoad event ? How to do that ? Thanks. -- You received this message because you are

Animation on images

2009-12-14 Thread Ista Pouss
Hi, I have two questions about animations : - How do I perform an infinite animation ? If I do in my Animation class : @Override protected void onComplete() { super.onComplete(); run(1); } ...