Re: UiBinder Issue

2009-11-06 Thread matthieu vidal
Hi You should have a problem with the file Query.ui.xml file name( not in the right place or bad name probably) regards On 6 nov, 06:31, drobe drob...@gmail.com wrote: Hey, so I've been attempting to work with UiBinder with GWT 2.0 and can't seem to see why my module will not compile. Does

Re: Use RichTextAreaImpl for existing Element

2009-11-06 Thread ATom
I found that is doesn't possible. RichTextAreaImpl working internally only with iframe and I need use directly some elements like div with contentEditable=true. I forked default GWT implementation and modified it for this purpose. On Nov 2, 8:21 pm, ATom tomas.procha...@gmail.com wrote: Exist

MyClass is not a generic type; only generic types can be parameterized

2009-11-06 Thread dinosaurus
Hello, I have the following class which has not methods at all: public class MyClass extends LinkedListMyAnotherClass { } In GWT console and during GWT compilation I'm getting warnings like it is shown below. Could anybody comment what's the cause of the warnings and how to eliminate them?

Re: Mutli Module Application - GWT

2009-11-06 Thread Henrique Viecili
Vishant... more than one year ago we've started a GWT/Java/Spring application, and we were also struggling with the idea of having to work with a single Entry Point in the application (this was the first GWT app we built), and we decided to try with more than one module/entry point in the

Re: Client side time zone support in GWT

2009-11-06 Thread lowecg2004
Hi Joakim, Take a look at the DataTimeFormat object. I use the following to determine the client's timezone: /** * Get the client's time zone in the format GMT[+-]hh:mm * @return */ public static String getTimeZone() { final Date now =

Re: GWT tab panel With image tabs

2009-11-06 Thread SmartKiller
Thanks Davis, This can be a good solution. but i want to add mouseOver/out effect to tabs. I wanted to change the color of the tab text on mouseEvents. How this can be done. I dont find any way to add mouseListener to tabs in Tabpanel. Any Idea. On Nov 6, 10:36 pm, Davis Ford

[gwt-contrib] Trace that auto detects the calling class/method.

2009-11-06 Thread stuckagain
Hi, Would it be possible to implement a Trace mechanism that (when enabled) would be able to autodetermine from where it is called (classname.method). In plain java I have such a thing implemented in my tracing package and it really helps in keeping trace statements really simple. In the GWT