Can GWT Developer provide a way to push GWT Development Mode(come with 2.0) into Eclipse directly?

2009-10-28 Thread Alex Luya
I mean making it as a eclipse plugin.It is a very bad experience to switch between eclipse and GWT Development Mode. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Re: Which is the best way to manage many rows in a table with pagination?

2009-10-28 Thread rakesh wagh
>> I was seeing the incubator's widget ScrollPagingTable, what do you think about it? it is really good, use it! Rakesh Wagh On Oct 28, 6:43 am, iaio81 wrote: > Hi all, > which is according to you the best way to manage many rows in a table > through pagination? I was seeing the incubator's w

Re: Con artists have likely gained admin access to the Client-side GChart project.

2009-10-28 Thread sathya
It would be great if you can continue from a different email address & web location On Oct 27, 10:33 pm, "i...@srcbin.com" wrote: > This concerns me as well.  I've searched and saw no mention of this > project being moved or reset somewhere else. > > There was also no mention of if the subversio

Re: Problem with GWT DialogBox

2009-10-28 Thread Dinis
I've been tracking the problem. It seems the cause of the problem is setting the dialogBox animation ON [dialogBox.setAnimationEnabled (true);] But still I don't know why, I'm using other dialogBox'es in the program and they draw correctly with animation ON on every browsers. Any ideas? Thanks,

Re: hosted mode works but not in IE/firefox...

2009-10-28 Thread golfdude
Thanks, Jason. I debugged the issue yesterday by commenting out portions of the UI code etc. But good to know about "-style". I use "compile/browse" of the hosted browser to compile. Can this setting be set for the hosted browser also ? Or do I have to use a build script ( ant ) to do the compile

Re: Change timezone dynamically, detecting US daylight saving change from Japan

2009-10-28 Thread Yozons Support on Gmail
I don't have a lot of experience with all of this yet, but the Date object should care nothing abut timezones. Presumably it should be "GMT/UTC/Zulu" and then only convert the data for display based on the user's locale. So if you have a valid Date, it should correctly show for each timezone that

Re: Is data on GWT pages secure from attack?

2009-10-28 Thread Yozons Support on Gmail
On Wed, Oct 28, 2009 at 12:00 PM, Jason Essington < jas...@greenrivercomputing.com> wrote: > > In general you seem to be talking about attacks that would be handled > by the browser's "Same Origin Policy". This does segregate js loaded > from different places to prevent that sort of thing. > That

Re: Is data on GWT pages secure from attack?

2009-10-28 Thread Yozons Support on Gmail
On Wed, Oct 28, 2009 at 10:34 AM, gwtfanb0y wrote: > > I would say that every Web Application which has its security only > inside the Frontend (Browser) is per default insecure. > If an evil person is smart, he can manipulate the JavaScript and make > invisible forms visible, submit not verified

Re: New Blank Project, Empty Project for Eclipse

2009-10-28 Thread Ian Bambury
2009/10/28 ARGold > > the latest: App Engine: 1.2.6, Web Toolkin 1.7.1 > > Am I missing something somewhere? > Dunno :-) No, it's just that the minimum varies depending on what you need. For example, this is a GWT forum and therefore GAE isnot really part of "an empty, blank project template w

If two nocache.js scripts in same frame with same stylesheet name, only first css loaded

2009-10-28 Thread Michael Sullivan
I have a GWT app where I have a menu module and a session control module. I load them as two separate .js apps in one frame: Each has a .css file associated with it through the module .gwt.xml file. Having used gwt-maven to create the projects, I left the default stylesheets as Application.

gwt suggestbox.

2009-10-28 Thread kss
I am using the gwt suggestbox currently as a typeahead text box to display suggestions from MultiSuggestOracle. Now I need a way to enable the suggestbox to appear only after a fixed set of characters are entered in the text box. Is there a way to do this ? Any suggestions. --~--~-~--~

Re: Can you get me good tutorial site to develop my own GWT widget

2009-10-28 Thread Eric
On Oct 28, 4:09 am, sathya wrote: > Can you get me good tutorial site to develop my own GWT widget David Maddison wrote a nice tutorial on creating a widget that renders as an HTML or list, where each entry is clickable. http://davidmaddison.blogspot.com/2009/01/creating-gwt-component.html R

Re: New Blank Project, Empty Project for Eclipse

2009-10-28 Thread ARGold
the latest: App Engine: 1.2.6, Web Toolkin 1.7.1 Am I missing something somewhere? On Oct 28, 11:26 am, Ian Bambury wrote: > What version of GWT? > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolk

How feasible is to have multiple GWT Applications under the same Eclipse Project?

2009-10-28 Thread Raziel
Is there any disadvantage with having multiple GWT Applications under the same Eclipse project? They would be properly defined in their own modules, and code reuse achieved through module inheritance. The only "issue" I see is that it might be confusing for people to assume some class is available

Re: GWT and DragListener

2009-10-28 Thread Fred Sauer
Listeners in the latest version have been migrated to Handlers to be consistent with the corresponding changes in GWT On Thu, Oct 22, 2009 at 8:10 PM, SUHASINI PRASAD wrote: > HI, > > I have that part added to my project, still it is not recognizing the > DragListener. What i am trying to do is

Are you interested?

2009-10-28 Thread Number0nE
Watch free tv online 320 channels from 32 countries http://www.mwk-g.info --~--~-~--~~~---~--~~ 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@googlegrou

Re: Is data on GWT pages secure from attack?

2009-10-28 Thread Sripathi Krishnan
> > But are there any security issues if someone frames your web site or > otherwise gets the same web browser page to load javascript from > another web site, can the other web site's javascript work through the > DOM or the JS global pool to find all the data? > I think you are speaking about cr

Re: Is data on GWT pages secure from attack?

2009-10-28 Thread Jason Essington
In general you seem to be talking about attacks that would be handled by the browser's "Same Origin Policy". This does segregate js loaded from different places to prevent that sort of thing. but if the uses shouldn't have the data, then you shouldn't have sent it in the first place. rememb

Change timezone dynamically, detecting US daylight saving change from Japan

2009-10-28 Thread anjolight
Hi, I have a GWT app used by both users in Japan and in US. The app is a simple class scheduling web site where Japanese students book English lessons with US tutors. The class time must be displayed in Japan time for Japanese users and US time for US users. The challenge is that I need to detect

Re: Continuous Integration with GWT 1.7 and Hudson

2009-10-28 Thread Sripathi Krishnan
You are using Xvfb in the wrong place. Since hudson is going to start the browser, it needs the Xvfb argument. Jboss doesn't need those arguments. Here is what we did to get Hudson working with gwt test cases nohup Xvfb :4 -screen 0 1024x768x24 & DISPLAY=:4 nohup java -jar hudson.war --httpPort=8

Re: New Blank Project, Empty Project for Eclipse

2009-10-28 Thread Ian Bambury
What version of GWT? Ian http://examples.roughian.com 2009/10/28 ARGold > > This subject has been posted twice and is archived so no-one can reply > to it. There is an issue #1547 with 43 votes on it. > > http://code.google.com/p/googleappengine/issues/detail?id=1547 > > There are at least t

New Blank Project, Empty Project for Eclipse

2009-10-28 Thread ARGold
This subject has been posted twice and is archived so no-one can reply to it. There is an issue #1547 with 43 votes on it. http://code.google.com/p/googleappengine/issues/detail?id=1547 There are at least two good reasons to have an empty, blank project template when creating a new GWT project

Re: How to minimize browser using GWT ?

2009-10-28 Thread Brandon Tilley
GWT on the client side is just HTML and JavaScript, not magic. :-) If you can't do it with HTML and JavaScript, you can't do it with GWT. On Oct 28, 9:47 am, Rinku wrote: > Thanks for your reply Kris and DaveS. > But I have requiement to provide my own mimimize and maximize button. > > On Oct 2

Re: Rebind result * cannot be abstract

2009-10-28 Thread q2dm1
Sorry, I should have given a more detailed explanation. Here's what happens: Let's say I have two classes: public abstract class A { public void method(); } public abstract class B extends A { public void stuff() { } // ... } In my module I have the following rule: Th

Re: Several Modules and a efficient way of xml organization.

2009-10-28 Thread Fran
thanks thomas :) any other idea ? On 28 oct, 14:23, Thomas Broyer wrote: > On 28 oct, 18:05, Fran wrote: > > > > > > > Hi! My name is Fran and I've been working with gwt for almost 2 years > > now and I couldn't be any happier with the results. > > > Lately I was dealing with some issues regar

Re: Is data on GWT pages secure from attack?

2009-10-28 Thread gwtfanb0y
I would say that every Web Application which has its security only inside the Frontend (Browser) is per default insecure. If an evil person is smart, he can manipulate the JavaScript and make invisible forms visible, submit not verified data and can change the current userid & password when stored

Re: Rebind result * cannot be abstract

2009-10-28 Thread Thomas Broyer
On 28 oct, 13:03, q2dm1 wrote: > Hi, > > I'm trying to instantiate an abstract class with GWT.create(), however > the compiler tells me that rebind results can't be abstract. Is there > an explanation for this? If rebind results can be interfaces, why not > abstract classes? You're missing a

Re: Several Modules and a efficient way of xml organization.

2009-10-28 Thread Thomas Broyer
On 28 oct, 18:05, Fran wrote: > Hi! My name is Fran and I've been working with gwt for almost 2 years > now and I couldn't be any happier with the results. > > Lately I was dealing with some issues regarding spliting my app in > several modules in order to re-use them in future projects. This i

Re: How to minimize browser using GWT ?

2009-10-28 Thread Jason Essington
Since javascript doesn't provide a way to minimize a browser window, you aren't going to be able to do it in GWT. In fact, any time you attempt to move, resize or close a window that is not a direct result of user action, AND an expected result from that action you are going to upset your u

Re: How to simulate a hyperlink click and browse the page to a new URL?

2009-10-28 Thread Thomas Broyer
On 28 oct, 17:18, "werner.liebenb...@gmail.com" wrote: > Hi! > > I cannot find a ready reference to this anywhere, which is puzzling, > since it is such a mundane operation to accomplish. I have a GWT > application running in the browser. If the user clicks on a particular > button, I need the

Several Modules and a efficient way of xml organization.

2009-10-28 Thread Fran
Hi! My name is Fran and I've been working with gwt for almost 2 years now and I couldn't be any happier with the results. Lately I was dealing with some issues regarding spliting my app in several modules in order to re-use them in future projects. This is an example of what I have right now: C

Re: Are there any books on the GWT?

2009-10-28 Thread wil.pannell
GWT in Practice was written by Charlie (I forget his last name but he's a frequent poster on this message board). It has the most-detailed treatment of how to engineer a GWT application of any of the other books, and because the books deals mostly with core application development, it hasn't gone

Re: How to minimize browser using GWT ?

2009-10-28 Thread Rinku
Thanks for your reply Kris and DaveS. But I have requiement to provide my own mimimize and maximize button. On Oct 28, 7:39 pm, DaveS wrote: > Why not just use the browser's own minimise button? > > I'm sure you won't be able to minimise the browser from inside > JavaScript code. > >   Dave. >

Re: Are there any books on the GWT?

2009-10-28 Thread Jason Essington
My favorites are "GWT in Action" by Rob Hanson and Adam Tacy, and "Google Web Toolkit Applications" by Ryan Dewsbury Unfortunately both of these were published over a year ago, so GWT has undergone some changes since then. They do have some very good information, but things in the GWT world

How to simulate a hyperlink click and browse the page to a new URL?

2009-10-28 Thread werner.liebenb...@gmail.com
Hi! I cannot find a ready reference to this anywhere, which is puzzling, since it is such a mundane operation to accomplish. I have a GWT application running in the browser. If the user clicks on a particular button, I need the current page to be replaced with a different page under the same appl

Re: GWT and Eclipse Plugin: Compilation failed

2009-10-28 Thread Rajeev Dayal
Hi, If you take a look at your error log by going to Window->Show View->Error Log, do you see any related exceptions? Rajeev On Fri, Oct 23, 2009 at 9:23 PM, shooty wrote: > > Hi, > > I installed Eclipse and GWT-Plugin several times. When I try to > compile the Package, i ALWAYS get an popup

Re: hosted mode works but not in IE/firefox...

2009-10-28 Thread Jason Essington
You'll want to compile with -style PRETTY to see what "g" really is. The default obfuscated code is not going to help you debug at all. -jason On Oct 28, 2009, at 8:19 AM, golfdude wrote: > > > gwt 1.7... > > I have an app which works fine in hosted mode but when I compile/ > browse to Minefie

Re: GWT 1.7.1 don't show app in hosted mode (Jetty bug: FULL head)

2009-10-28 Thread Rajeev Dayal
Hm, I would have expected that to work. Can you verify that when this problem happens, you have large cookies in the directories that you tried to clear? I believe that the Vista cookies directory is: C:\Users\ your user name\AppData\Roaming\Microsoft\Windows\Cookies 2009/10/17 lain > > > My s

Re: blackberry support

2009-10-28 Thread mwaschkowski
Hi, OK, thanks very much! Cheers, Mark On Oct 26, 8:30 am, ANDRES BRUN wrote: > Hi, > > I have Opera Mini in my Blackberry 8100, it's works! One thing, in my > Blackberry I can't use the Trackball with the Opera, because the Opera > closes with an error (Java somethingException... Caught!

Is data on GWT pages secure from attack?

2009-10-28 Thread Open eSignForms
Not necessarily a GWT question, but GWT certainly makes use of many widgets that contain data perhaps downloaded over SSL from a secure web site. The data is obviously in the clear inside the web browser, which is expected and fine. But are there any security issues if someone frames your web si

Re: Are there any books on the GWT?

2009-10-28 Thread Olivier
I started with this book : Beginning Google Web Toolkit: From Novice to Professional. http://www.apress.com/book/view/9781430210313 Pretty good to understand the bases. simmya kv wrote: > "GWT in action" is bit confusing for starters.better get an idea > from google documentation,and t

Re: hosted mode works but not in IE/firefox...

2009-10-28 Thread Kriptonis Azullis
Try to debug in hosted mode, is 'g' a variable you use? check it it is always initialized, even if some error situation occurs. Maybe a callback is failing and your onSuccess isn't firing, or something similar. Just throwing possibilities here. On Oct 28, 2:19 pm, golfdude wrote: > gwt 1.7... >

Re: Con artists have likely gained admin access to the Client-side GChart project.

2009-10-28 Thread i...@srcbin.com
This concerns me as well. I've searched and saw no mention of this project being moved or reset somewhere else. There was also no mention of if the subversion repository should be considered compromised. I suspect looking at diffs and maybe a code review would tell, but... that is alot of redun

Problem

2009-10-28 Thread lucky
I want to make a web application as igoogle,m using gwt ext,but don know how to save the current state,when i move the widgets and refresh it ,It again comes to the previous order,kindly help. --~--~-~--~~~---~--~~ You received this message because you are subscrib

Re: Are there any books on the GWT?

2009-10-28 Thread simmya kv
"GWT in action" is bit confusing for starters.better get an idea from google documentation,and then refer the text book On 10/28/09, David C. Hicks wrote: > > > Yes, there are a number of pretty good books on GWT. The first I am > aware of was "GWT In Action". It's slightly dated, but stil

Re: How to minimize browser using GWT ?

2009-10-28 Thread DaveS
Why not just use the browser's own minimise button? I'm sure you won't be able to minimise the browser from inside JavaScript code. Dave. On Oct 28, 1:24 pm, Rinku wrote: > Please help me. > It is very urgent. > > Thanks in advance. > > On Oct 28, 9:42 am, Rinku wrote: > > > Thanks for your

Rebind result * cannot be abstract

2009-10-28 Thread q2dm1
Hi, I'm trying to instantiate an abstract class with GWT.create(), however the compiler tells me that rebind results can't be abstract. Is there an explanation for this? If rebind results can be interfaces, why not abstract classes? Regards --~--~-~--~~~---~--~~

Re: callback design question...

2009-10-28 Thread simmya kv
Yes,since u have called loadui2() in method(),that will happen,,,but your telling it is never called,so i thnk there is some problem in your callback1,so need to check that,,and you can also call loadui2() in callback1 for better sequence On 10/28/09, Paul Robinson wrote: > > > As you've written

Continuous Integration with GWT 1.7 and Hudson

2009-10-28 Thread Christian López Espínola
Hi, I'm trying to get CI working on my server. It's a Linux box with JBoss, and no X server. When trying to build I got errors when running GwtTests: [INFO] org.eclipse.swt.SWTError: No more handles [gtk_init_check() failed] [INFO] at org.eclipse.swt.SWT.error(SWT.java:3400) [INFO] at org.ecli

Re: How to minimize browser using GWT ?

2009-10-28 Thread Kris
Can't you just leave that functionality to the browser? It already has a minimize button that will function the way you expect, and will be exactly where the users expect. Two minimize buttons will just confuse things, won't they? On Oct 28, 4:42 am, Rinku wrote: > Thanks for your replies. > F

How can i use Jquery-validation in GWT when we submit form ?

2009-10-28 Thread Tushar
submitButton.addClickListener(new ClickListener() { @Override public void onClick(Widget sender) { form.submit(); } }); form.addFormHandler(new FormHandler() { public void onSubmit(FormSubmitEv

Re: Problems with 1.7.1 -noserver hosted mode on Linux

2009-10-28 Thread Jeff Chimene
The problem may be that .16 point release doesn't play well w/ GWT. The symptoms are usually that the debugger doesn't stop at a breakpoint, not that the entry point is never called. I think you have to downgrade to at least .14 Search this list for the JDK version. It's been discussed several time

Re: why onInjectionDone has to be called from a separate script in the selection script?

2009-10-28 Thread Raziel
Oh that makes now a lot of sense. I completely missed that part (even though it's a few lines above what I was looking at). I guess I'll have to change that code in the linker as well to not use document.write but some other way to control the execution of injected scripts. Has anybody had this

hosted mode works but not in IE/firefox...

2009-10-28 Thread golfdude
gwt 1.7... I have an app which works fine in hosted mode but when I compile/ browse to Minefield/firefox, I get my first login screen and on logging in, I get an empty screen. When I look in the browser error console, I just see an error "g is null". I tried debugging in firebug but this is all

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-28 Thread Rajeev Dayal
Hi Franceso, Sorry that it took so long for me to get back to you. If you perform an install against a clean version of Eclipse (i.e. a download of Eclipse from eclipse.org) with a clean workspace, do you run into the same problem? Rajeev On Fri, Oct 16, 2009 at 4:45 AM, francescoNemesi wrote

Re: Does GWT work in Snow Leopard?

2009-10-28 Thread Rajeev Dayal
Hi Joe, Are you still running into problems? Can you describe the exact problem you're seeing? Also, can you describe your system config (platform, GWT version, JDK version)? Thanks, Rajeev On Thu, Oct 22, 2009 at 12:35 PM, Joe wrote: > > Is there no update on this sorry issue? I keep expect

How do I get the current position of a widget within a Absolute Panel?

2009-10-28 Thread Kriptonis Azullis
Hi there, I'm making a application where the user makes diagrams, saves them, and then loads them to visualise or edit. I need a way of getting the position of the widgets within the absolute panel where they are. The absolute panel occupies a certain area of the page, so it's not the whole page.

Re: How to minimize browser using GWT ?

2009-10-28 Thread Rinku
Please help me. It is very urgent. Thanks in advance. On Oct 28, 9:42 am, Rinku wrote: > Thanks for your replies. > First I am explaining my requirement :- > > I created my own minimize and maximize button in my Application. > When I click on minimize button, my application should minimize like

Re: Window Focus on chrome

2009-10-28 Thread Rinku
I am also looking for this solution. On Oct 28, 2:15 pm, "ganesh.shirsat" wrote: > hi any one tell me > how we focus on chrome browser using gwt. > Javascript issue? window.focus() doesn't work in Chrome! --~--~-~--~~~---~--~~ You received this message because yo

Re: GWT Eclipse Plugin problem: how can I delay validation when using generated sources ?

2009-10-28 Thread David
Hi, Well it does not happen all the time that's a bit the problem. so I can not really create a repro case. Both the Sync and Async interfaces are generated using a builder configuration in the eclipse project. When generation is done, it refreshes the folder where the new code was generated. Bo

Problem with the eclipse plugin and a mave multi module project.

2009-10-28 Thread Vicio
Having a maven multi module project and than A-->B where both A and B have GWT code cause a problem related to the way the maven eclipse plugin work. Since the GWT eclipse plugin needs the source jar of B but than this is not included when the project dep is set in eclipse. See here: http://jira

Which is the best way to manage many rows in a table with pagination?

2009-10-28 Thread iaio81
Hi all, which is according to you the best way to manage many rows in a table through pagination? I was seeing the incubator's widget ScrollPagingTable, what do you think about it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

Compiler: Why Lazy loading in the Client-Package?

2009-10-28 Thread gwtfanb0y
I have encountered an annoying issue with the GWT-Compiler. It seems that there is some kind of lazy loading of classes which have 'IsSerializable' implemented. I have a Model-Class - implementing 'IsSerializable' - like this: - package com.xxx.client.model; import com.google.gwt.user.client

ryan best prastice gwt

2009-10-28 Thread asianCoolz
may i know when will the sample will be available? really appeciated --~--~-~--~~~---~--~~ 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

Problems with 1.7.1 -noserver hosted mode on Linux

2009-10-28 Thread bysse
I'm having huge problems getting hosted mode to work under Linux with the -noserver flag. The module entry point is never called and no error message is show / logged. I've tried to start it through both the maven plugin and the eclipse plugin with the same results. The project works fine in a wi

Re: Debugging in Eclipse doesn't work

2009-10-28 Thread Youngster
I had the same problem. Install the newst JDK from http://www.java.com/en/download/manual.jsp and it will be solved. On Oct 28, 4:42 am, Brian Park wrote: > Hi, > > I'm new to GWT and following the StockWatcher tutorial from GWT > website.  I'm on the debugging section, so as the tutorial told m

Re: callback design question...

2009-10-28 Thread Paul Robinson
As you've written it, loadui2() would be called, but not necessarily before servicecall1 had completed. If you want asynchronous calls to happen in sequence, then you have to start the second call from within the callback of the first one. Couldn't be explained better than this: http://groups.goo

Window Focus on chrome

2009-10-28 Thread ganesh.shirsat
hi any one tell me how we focus on chrome browser using gwt. Javascript issue? window.focus() doesn't work in Chrome! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

callback design question...

2009-10-28 Thread golfdude
I have a method as: method() { loadui1(); loadui2(); } loadui1() { servicecall1(callback1); } loadui2() { servicecall2(callback2); } loadui2() is never called. But in these scenarios, I am wondering how one would design so that callback1 knows that there needs to be a call to loadui2 ? Or am

Re: Can you get me good tutorial site to develop my own GWT widget

2009-10-28 Thread Artyom Vorobyev
Hi! Take a look on GWT in Action book. This one is good enough to be used as tutorial. Best regards, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to g

Re: Extend or withdraw the set of compileable Java classes

2009-10-28 Thread Max Zhu
Yes of course. As long as you well configured your EntryPoint class in module xml. On Tue, Oct 27, 2009 at 6:09 PM, Sean wrote: > > Hi together, > > I'm new to GWT and I'm looking for a way to use the GWTCompiler for > another set of Java classes. > Basically I would like to write my own set of

Parent/Child Windows References

2009-10-28 Thread ganesh.shirsat
Have a question. I have this situation: in JavaScript I have a parent window that opens a child window using window.open(). Now, through the course of the whole thing, comes a point where the child focus the parent window using opener.focus(). but if i add tab in that window it break the reference

Re: gwt rpc client side serialization

2009-10-28 Thread akhil
Hi, Thanks for the info guys, I was looking for something simpler. Rocket-gwt is not usable in GWT 1.6 and 1.7. And using protocol buffer needs me to touch my pojos, which i want to avoid at any cost. Writing my own serialization seems to be the only option as I need to support even circular ref

Can you get me good tutorial site to develop my own GWT widget

2009-10-28 Thread sathya
Can you get me good tutorial site to develop my own GWT widget --~--~-~--~~~---~--~~ 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 un