Re: My kingdom for a cache

2010-09-16 Thread mooreds
Hi David, Most AJAX implementations respect caching headers, then you can let the browser handle eviction of your data. http://www.mnot.net/javascript/xmlhttprequest/cache.html has a set of tests for browsers. However, if you want to mark something dirty and have the cache pull it down, then you

Re: knowing module inheritance

2010-08-16 Thread mooreds
I didn't find any real solution, so I'll have to maintain the dependent module list in two places (code and xml). Bummer. Dan On Aug 9, 8:54 am, mooreds wrote: > Hi folks, > > I have a bit of a peculiar need.  I work on a site with a number of > disparate GWT modules:

Re: Upgrade from 1.5.3 to 2.x

2010-08-16 Thread mooreds
I posted about this. It's not too detailed, but could be some help. http://www.mooreds.com/wordpress/archives/572 Let me know if you had specific issues and I'll try to remember what I did. We're slowly moving off deprecated code (like ClickListeners), so you don't have to do it in a big bang.

Re: Script tag dynamic loading

2010-08-09 Thread mooreds
I don't understand? The gwt maps project is GWT. Do you want to load the map via GWT, or before GWT loads? If after GWT loads, you could definitely load or not load based on some user input. Dan On Aug 9, 9:39 am, Vincent COROLLEUR wrote: > Thx for your help mooreds, but i need to ru

Re: introducing a marketplace for GWT components & associated projects

2010-08-09 Thread mooreds
Great idea! I posted to my blog about your announcement: http://www.mooreds.com/wordpress/archives/623 (Could be a source of more projects to contact and invite to the marketplace). Hope this gets some traction. Dan On Aug 9, 10:29 am, Joe Hudson wrote: > Thanks Christian, > > When I get home

Re: onModuleLoad() Before Page Load

2010-08-09 Thread mooreds
e only > way I could think of accomplishing this was creating a GWT JSNI method > that takes a div id string as a parameter so it knows where to attach > my widget. > On Aug 9, 8:18 am, mooreds wrote: > > > > > Hi Ryan, > > > This doesn't answer your questi

Re: onModuleLoad() Before Page Load

2010-08-09 Thread mooreds
Hi Ryan, This doesn't answer your question, but I was wondering why you had the velocity template initiate attaching your widgets to your spans? Another possibility is to have velocity write a list of span ids to a hidden span, and then have your GWT component (in a startup module) read that span

Re: Script tag dynamic loading

2010-08-09 Thread mooreds
Hi Vincent, You might want to look at this project: http://code.google.com/p/gwt-google-apis/wiki/MapsGettingStarted This not only has gwt bindings for google maps, but also has a way to load the API dynamically (using the ajax loader): http://gwt-google-apis.googlecode.com/svn/javadoc/maps/1.1/

Re: HTML Table

2010-08-09 Thread mooreds
Hi, The name of that method is a bit misleading. HTMLTable inherits setTitle from the UIObject class, and from the javadoc: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/UIObject.html#setTitle(java.lang.String) this method: "Sets the title associated with

knowing module inheritance

2010-08-09 Thread mooreds
Hi folks, I have a bit of a peculiar need. I work on a site with a number of disparate GWT modules: moduleA moduleB moduleC They all attach to different spans and enhance site functionality. To load them all when the page loads, I have a loader module (loaderModule) which inherits from all mod

Re: problems running application in development mode using -noserver switch and cache.html/nocache.js files not served from the webapp root

2010-02-08 Thread mooreds
Another issue I ran into was using the XS linker causes development mode to stop working. Apparently this is a known issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4232 On Feb 8, 10:26 am, mooreds wrote: > Hi Jay, > > I think my problem is a bit different

Re: problems running application in development mode using -noserver switch and cache.html/nocache.js files not served from the webapp root

2010-02-08 Thread mooreds
eks ago and I have not seen a response.  If you figure something > out please post your solution. > > Thanks, > - Jay > > On Feb 7, 12:52 pm, mooreds wrote: > > > Hi folks, > > > I'm trying to get GWT 2.0.1 development mode working with the - > > noserver

problems running application in development mode using -noserver switch and cache.html/nocache.js files not served from the webapp root

2010-02-07 Thread mooreds
Hi folks, I'm trying to get GWT 2.0.1 development mode working with the - noserver option. The main issue is that while running in development mode, any changes I make in the GWT java classes are not reflected when I refresh the browser. This is a bit of a nonstandard setup, so let me outline it

New release of GWT crypto library

2009-10-08 Thread mooreds
Hi folks, I've just released 1.0.2 of gwt-crypto, a library that provides TripleDES encryption for GWT. http://code.google.com/p/gwt-crypto/ Thanks, Dan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web T

Has anyone used Google streetview in GWT?

2009-01-07 Thread mooreds
Hi folks, I am currently using the Mapitz GWT Google Maps bindings (http:// sourceforge.net/tracker/?group_id=169331), because I'm still on GWT1.4 (yeah, I know, I know). When we upgrade to 1.5, I plan to use the Maps API provided by Google: http://code.google.com/docreader/#p=gwt-google-apis&s=

Re: Multiple Json requests problem in parsing

2008-12-31 Thread mooreds
Hi Jake H, As far as I can tell, there are two ways to make multiple dependent remote calls in GWT and have the data come together in one display. The first is what you suggested in your Dec 18/6:10am post: make a call to source 1, then in the request call back, make a call to source 2, then in

Re: how to clear cache on windows hosted mode

2008-09-23 Thread mooreds
Hi Ian, Thanks for the response; I am on Windows. To be more specific, I'm pulling data in from another server via JSONP in the manner described in this article: http://code.google.com/support/bin/answer.py?answer=65632&topic=11368 I've found that the

how to clear cache on windows hosted mode

2008-09-23 Thread mooreds
Hi folks, I am looking for how to clear the hosted mode browsers cache. In particular, I'm interested in clearing out the CSS and script tag content--I'm using some dynamic JSON that I want to make sure is not cached. I found one post a month ago that was asking how to do the same thing for Lin