Re: Will 2.0 get rid of the deprecated APIs?

2009-11-18 Thread Jim Douglas
That seems to be the official position: http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/33ef903fe5097437/82dc098a5854df1a My guess is that someone just started working on the GWT 2.0 javadocs -- copying over the 1.6 doc tree as a starting point. On Nov 18,

Re: Error when running ant hosted on OS X 10.6

2009-11-17 Thread Jim Douglas
Try this, Zak: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c22 On Nov 17, 9:52 am, Zak zakn...@gmail.com wrote: I've reverted to Safari 4.0.3 using a Time Machine backup (just replacing Safari.app) and it has not fixed the problem. Based on this Apple support thread

Re: GWT hosted mode crashing after update

2009-11-17 Thread Jim Douglas
: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c22 On Nov 16, 9:55 am, Jim Douglas jdoug...@basis.com wrote: My MacBook Pro is my main GWT development system, so I'm dead in the water here too.  Kelly mentions a possible workaround in comment #16, but I haven't seen

Re: GWT hosted mode crashing after update

2009-11-16 Thread Jim Douglas
My MacBook Pro is my main GWT development system, so I'm dead in the water here too. Kelly mentions a possible workaround in comment #16, but I haven't seen the details: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c15 Apparently this Apple bug will be fixed in Safari

Re: Error when running ant hosted on OS X 10.6

2009-11-12 Thread Jim Douglas
Same crash here trying to start hosted mode inside Eclipse using Mac OS X Leopard after installing that Safari update. I added the first part of my crash report to http://code.google.com/p/google-web-toolkit/issues/detail?id=4220. On Nov 12, 12:43 am, bmalkow bartosz.malkow...@gmail.com wrote:

Re: How to capture function keys ?

2009-11-09 Thread Jim Douglas
F1..F12 will probably return values of 112..123. But overall, JavaScript key events are...interesting. Read this warning as here there be dragons: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/event/dom/client/KeyEvent.html Base class for Key events. The native

Jason Essington

2009-10-16 Thread Jim Douglas
Jason Essington -- Your account has apparently been compromised, and is being used to post spam to this list. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Spam messages to the group

2009-10-16 Thread Jim Douglas
There's a new one this morning: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/89ae20736a87bfaf# On Oct 15, 8:34 pm, Jason Essington jason.essing...@gmail.com wrote: I just noticed that there were several spam messages in my Gmail   sent box that came to this group

Re: Regarding GWT

2009-09-15 Thread Jim Douglas
http://code.google.com/webtoolkit/doc/1.6/FAQ_GettingStarted.html http://code.google.com/webtoolkit/gettingstarted.html http://code.google.com/webtoolkit/tutorials/1.6/index.html On Sep 15, 9:40 pm, anu nimmala.anukar...@gmail.com wrote: HI iam new to GWT and i started working on it ,i wanna

Re: possible DatePicker issue with October

2009-09-14 Thread Jim Douglas
I don't see that problem here (Mac OS X Leopard, Pacific time zone (North America), Firefox 3.5.3; Opera 10.0; Safari 4.0.3). What's your environment, Diego? That sounds like a daylight saving time anomaly; are you in Argentina, Brazil, or Paraguay? http://www.timeanddate.com/time/dst2009.html

Re: possible DatePicker issue with October

2009-09-14 Thread Jim Douglas
14, 10:11 am, Jim Douglas jdoug...@basis.com wrote: I don't see that problem here (Mac OS X Leopard, Pacific time zone (North America), Firefox 3.5.3; Opera 10.0; Safari 4.0.3). What's your environment, Diego?  That sounds like a daylight saving time anomaly; are you in Argentina, Brazil

Re: TabPanel IE vs. FF

2009-09-14 Thread Jim Douglas
The other thing to check with IE8 is to compare how it renders the page in standards mode versus quirks mode. We fixed a whole host of IE8 formatting issues by generating our HTML to request standards mode. On Sep 14, 11:51 am, Davis Ford davisf...@zenoconsulting.biz wrote: On Mon, Sep 14,

ListBox scroll index to visible

2009-09-10 Thread Jim Douglas
This seems to work ok, but I hate to write code that depends on undocumented internals: ListBox listbox = ...; int index = ...; SelectElement selectElement = SelectElement.as (listbox.getElement()); OptionElement optionElement = selectElement.getOptions

Re: Does GWT work in Snow Leopard?

2009-09-08 Thread Jim Douglas
class in gwt-dev-mac.jar to remove the check for java 1.5. If you do this then you can use java 1.6 with the -d32 flag and it works fine. More details athttp://development.lombardi.com/?p=1012 On Aug 31, 6:35 pm, Jim Douglas jdoug...@basis.com wrote: Hi Sumit, That workaround

Re: Does GWT work in Snow Leopard?

2009-09-08 Thread Jim Douglas
as horrific, it's just one directory and two symlinks. Pascal On Sep 8, 5:31 pm, Jim Douglas jdoug...@basis.com wrote: Don't follow that horrific advice; it will break the next time get get a Java update from Apple: http://lists.apple.com/archives/java-dev/2009/Sep/msg00072.html

Can I get at arbitrary events using GWT?

2009-09-08 Thread Jim Douglas
I need to implement a general event handler for text controls that lets me know every time the contents have changed in any way (I guess that would be through typing, cutting or pasting). I can get partway there now in GWT 1.7.0 with a combination of ONKEYPRESS and ONCHANGE, and I can get one

Re: CustomButton rollover effects fail when ON_MOUSE_OUT is never fired

2009-09-07 Thread Jim Douglas
-up:HOVER {     border: 1px solid #cbcbcb;     background-color: #e8e8e8; } On Sep 4, 10:33 pm, Jim Douglas jdoug...@basis.com wrote: I've got a set of button rules to change the background color on rollover (CSS below, but it's nothing exotic).  It works if you just move the mouse

Re: TabPanel Overlap Bug

2009-09-07 Thread Jim Douglas
Is that the complete and exact code from your screen shot? The first thought that comes to mind is that you might be loading up those tab panels with content that's exactly 400px high -- which expands to 412px when you factor in the default 6px padding from this rule in standard.css:

Re: gwt base64 encode implementation?

2009-09-07 Thread Jim Douglas
The first page returned from this search looks like a possibility. http://www.google.com/search?q=gwt+base64 On Sep 7, 12:43 pm, Lucas de Oliveira lucasdeolive...@gmail.com wrote: Hello there guys, does gwt have any base64 client-side (js) implementation? If not, do you guys have any

Re: Server Side: Writting a File on Disk

2009-09-06 Thread Jim Douglas
Hi Robert, That's a Google App Engine limitation; it has nothing to do with GWT. For the subset of Java classes that work in the Google App Engine, see: http://code.google.com/appengine/docs/java/jrewhitelist.html On Sep 6, 12:47 pm, Robert Lang rmlan...@gmail.com wrote: Hello, About: The

Re: Server Side: Writting a File on Disk

2009-09-06 Thread Jim Douglas
Also see: http://code.google.com/appengine/kb/java.html#writefile http://code.google.com/appengine/docs/java/datastore/overview.html On Sep 6, 1:03 pm, Jim Douglas jdoug...@basis.com wrote: Hi Robert, That's a Google App Engine limitation; it has nothing to do with GWT. For the subset

Re: Newbie to GWT 1.7 - again

2009-09-06 Thread Jim Douglas
Hi Thomas, The tutorials are very helpful; I worked through implementing the StockWatcher sample to get my head around GWT concepts (including RPC): http://code.google.com/webtoolkit/tutorials/1.6/index.html On Sep 6, 1:50 pm, Thomas Holmes thomas.j.hol...@gmail.com wrote: I posted this

CustomButton rollover effects fail when ON_MOUSE_OUT is never fired

2009-09-04 Thread Jim Douglas
I've got a set of button rules to change the background color on rollover (CSS below, but it's nothing exotic). It works if you just move the mouse in and out of the button; the CustomButton code to toggle setHovering(boolean) is triggered, and everything is good. But if something happens to

Re: How can I center arbitrary content on a fixed-size button?

2009-09-03 Thread Jim Douglas
-align: middle;\ user-defined-text div html Is there a better/simpler approach that I'm missing? On Sep 2, 6:27 pm, Jim Douglas jdoug...@basis.com wrote: I'm getting hung up on something that seems like it ought to be trivial.  I've got a fixed-size GWT Button and I need

Re: Thank you google!

2009-09-02 Thread Jim Douglas
I second that. We're making rapid progress porting a Swing front end to GWT. The Google/GWT engineers have done some really impressive work here. On Sep 2, 12:17 pm, charlie charlie.f...@gmail.com wrote: Err, haven't :). On Wed, Sep 2, 2009 at 2:16 PM, charlie charlie.f...@gmail.com wrote:

How can I center arbitrary content on a fixed-size button?

2009-09-02 Thread Jim Douglas
I'm getting hung up on something that seems like it ought to be trivial. I've got a fixed-size GWT Button and I need to render it (preferably using just static CSS rules) such that any arbitrary text or HTML content a user throws at it is centered both horizontally (that part's easy) and

Re: Does GWT work in Snow Leopard?

2009-08-31 Thread Jim Douglas
Hi Sumit, That workaround is really not acceptable. Because Apple considers the JVM to be part of the operating system, messing in those directories amounts to hacking the O/S. It's unsafe, unsupported, and can -- and probably will -- arbitrarily drop dead at any time with an O/S update. I

Re: DEPCRECATED Error Messages

2009-08-31 Thread Jim Douglas
Hi Stephan, Deprecated means this feature has been replaced, and should not be used. http://en.wikipedia.org/wiki/Deprecation The API documentation tells you what to use instead:

Re: Does GWT work in Snow Leopard?

2009-08-28 Thread Jim Douglas
All you need to do is set Eclipse to use Java 1.5 and the problem is gone. On Aug 28, 12:52 pm, Jim Douglas jdoug...@basis.com wrote: So what's the official word on GWT and Snow Leopard?  The impression that I get from Issue #2507, and earlier threads here, is that it's a no-go

Does GWT work in Snow Leopard?

2009-08-28 Thread Jim Douglas
So what's the official word on GWT and Snow Leopard? The impression that I get from Issue #2507, and earlier threads here, is that it's a no-go; copying Java 5 from Leopard isn't a solution. http://code.google.com/p/google-web-toolkit/issues/detail?id=2507

Is it possible to set a widget's complete size, including CSS decorations?

2009-08-03 Thread Jim Douglas
I'm in the process of porting a development environment to GWT in which screens are designed based on exact pixel locations and sizes. So I need to be able to create (e.g.) a ToggleButton with a total size on the screen of 90 pixels wide by 25 pixels high. The problem, of course, is if I call

<    1   2   3   4   5