Headless devmode

2009-12-21 Thread Thomas Matthijs
Hey, I made a trivial patch to gwt trunk to expose the headless mode as a DevMode option, I find this very useful when using non-eclipse IDEs so i can have the log output in the run console instead of the separate swing window. Just thought i'd share it if anyone else would find it handy:

Re: Gwt module may need to be (re)compiled

2009-12-18 Thread Thomas Matthijs
However after I login and the location of the window changes, I see nothing but an error-boxon the screen: Gwt module 'secondApp' may need to be (re)compiled. This error usually means that you are missing the ?gwt.codesrv= (sp?) parameter, probably gets lost in your redirect to the page --

Intellij idea + multiple modules

2009-12-09 Thread Thomas Matthijs
Hey, Question to everyone using gwt with intellij Since it doesn't support selecting which modules to compile[1], how do you deal with multiple modules, and/or development modules[2] to keep permutations down? Getting a bit tired of comment/uncommenting things in my gwt module xml. If you want

Re: Grid (Sluggish Load)

2009-12-03 Thread Thomas Matthijs
On Thu, Dec 3, 2009 at 21:05, Vince vicenci...@aol.com wrote: Hello, I have a regular Grid implementation with 5 columns that loads in 300 records within a DialogBox. Everything is fine until the actual return off of a Callback that handles the feedback from a data extraction routine

Re: JavaDoc Annotation to Skip Method Compilation

2009-12-01 Thread Thomas Matthijs
On Wed, Dec 2, 2009 at 04:10, Yozons Support on Gmail yoz...@gmail.com wrote: Join the club on this wish list item.  I'm not sure why so much energy was put into 2.0 without including such a feature that would make integrating client code with server code so much easier -- rather than having to

Re: UiBinder and no appropriate method error

2009-11-19 Thread Thomas Matthijs
On Thu, Nov 19, 2009 at 18:35, Jeff Chimene j...@grandadventuresranch.com wrote: Hi, I'm trying to decode the following error using 2.0-rc1: 10:21:33.040 [ERROR] In g:TextBox MaxLength='50' ui:field='username', class TextBox has no appropriate setMaxLength() method Am I doing this right? Do

Re: [gwt-contrib] Re: Reduce log levels, remove stderr launch URL message

2009-11-18 Thread Thomas Matthijs
You should see a log message Waiting for browser connection to ... with the URL, and a Launch default browser link there.  Does that not meet your needs? Maybe i'm doing it wrong, but that's not what i get. http://imgur.com/uWqfx If you go to http://localhost:/ you get an alert error

Re: [gwt-contrib] Re: Reduce log levels, remove stderr launch URL message

2009-11-18 Thread Thomas Matthijs
On Wed, Nov 18, 2009 at 17:15, John Tamplin j...@google.com wrote: Are you including a host page in your DevMode launch config?  You should be using -startupUrl Foo.html to tell GWT which host page you want to use, and then it will generate a complete URL for you. Ah much better indeed:

Re: [gwt-contrib] Re: Reduce log levels, remove stderr launch URL message

2009-11-17 Thread Thomas Matthijs
There used to be a copy-pasteable URL in the DevMode log window of the app you started (removed in 6559), I found this hugely helpfull when i was new to devmode and could not remember the the ?gwt.codesrv or the magical path/directory it put the project in (altho it seems to always be just the

Re: Firefox and Chrome Autocomplete Login Forms

2009-08-26 Thread Thomas Matthijs
Example for firefox: http://raibledesigns.com/rd/entry/browser_based_username_password_autocomplete --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: RPC taking longer with each iteration

2009-08-21 Thread Thomas Matthijs
This reminds me of http://pupius.co.uk/blog/2007/03/garbage-collection-in-ie6/ Dunno if it's related tho. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: MVP question

2009-08-20 Thread Thomas Matthijs
On Thu, Aug 20, 2009 at 07:59, Dalladalla_man...@hotmail.com wrote: I think maybe Ian had other ideas than what I suggested above. Implementering the HasInternationalContactDetails on the ContactDetails model, and then returning it from the ContactDetailsInterface would somehow make the

Re: MVP question

2009-08-20 Thread Thomas Matthijs
On Thu, Aug 20, 2009 at 14:02, Dalladalla_man...@hotmail.com wrote: I´m still not sure I´m following :-/ Could you please post a short example? I think something like this: interface HasAdres { HasValueString getStreet(); } class AdresWidget implements HasAdres { } class LargeFormWidget

Re: *.cache.html blocked by firewall - GWT team opinions please?

2009-08-12 Thread Thomas Matthijs
On Wed, Aug 12, 2009 at 17:14, Joe Coleprofilercorporat...@gmail.com wrote: We have encountered this on another network now. Does no one else have this problem? Why would anyone block *.cache.html on a proxy? Once again: a firewall is blocking the .cache.html file. GWT just sits there

Re: Difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler()?

2009-07-15 Thread Thomas Matthijs
The subject says it all really: Is there a difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler(), and if so, what is it? The API isn't very clear about this. Look it has source code!

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-15 Thread Thomas Matthijs
In an enterprise environment Will these bugs be fixed in GWT 2.0 or do I have to wait until IE8 or something else becomes mainstream in enterprise environments (in 3 years or so ?) Notting stopping you from fixing them yourself and submitting patches

Re: GWT + OpenID - experiences?

2009-07-03 Thread Thomas Matthijs
I haven't really read the whole thread, but maybe check out the following: http://code.google.com/p/dyuproject/ http://dyuproject.appspot.com/popup_login.html Looks like it should be useable with gwt. --~--~-~--~~~---~--~~ You received this message because you

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-07-01 Thread Thomas Matthijs
On Wed, Jul 1, 2009 at 13:56, Daviddavid.no...@gmail.com wrote: Just out of curiosity: What are the main drivers to move to Galileo? We are also working on a large GWT application and are currently standardized on Ganymede. Are there new features really worth the switch ? David But it's

configure hosted jetty

2009-05-03 Thread Thomas Matthijs
Hey, I'm trying to get hosted mode to follow symlinks in my war directory (for some static resources). The only way i've found, is to edit gwt-dev-linux.jar:org/mortbay/jetty/webapp/webdefault.xml as described here http://docs.codehaus.org/display/JETTY/How+to+enable+serving+aliased+files Is