Re: How can we save state of a GWT page?

2012-08-03 Thread Rubina Paul
Hi Taylor, Using hashes as tokens for managing history is already implemented in our application.But the requirement is once this application is closed on 2nd screen, then when user comes back to acess the app he should be directed to 2nd screen with values he selected when he left. It should not

Is there any way we can utilise Google Address Book API in our GWT Application

2012-08-03 Thread vikash@Atos
Hi, Is there any way we can utilise google address book API in our GWT Application. Thanks, Vikash -- 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 unsubscribe

Re: Is there any chart library for GWT?

2012-08-03 Thread Harald Pehl
In my current project (https://code.google.com/p/tire-d8/) I'm using GWT Highcharts (http://www.moxiegroup.com/moxieapps/gwt-highcharts/) It's easy to use and very flexible in its configuration:

Re: How to deploy GWT app on GAE which is connected to MySQL

2012-08-03 Thread Frank
I don't think this is possible. You have Google Bigtable for storage. Frank Op vrijdag 3 augustus 2012 07:42:25 UTC+2 schreef vikash@Atos het volgende: Hi, Can anybody please tell me how to use google cloud sql? Is it free for trail purpose? If it is not free can we use google cloud

Re: How to deploy GWT app on GAE which is connected to MySQL

2012-08-03 Thread Francesco Izzi
I think the only way is to make a webservice stack ! Regards, 2012/8/3 Frank frank.wyna...@gmail.com: I don't think this is possible. You have Google Bigtable for storage. Frank Op vrijdag 3 augustus 2012 07:42:25 UTC+2 schreef vikash@Atos het volgende: Hi, Can anybody please tell me

Compiler warnings when migrating from 2.3 to 2.4 or 2.5-rc1

2012-08-03 Thread John
GWT compile using 2.3.0 appears clean. When I migrate to 2.4.0 or 2.5.0-rc1 I see the following warnings: [java]Validating units: [java] Ignored 70 units with compilation errors in first pass. [java] Compile with -strict or with -logLevel set to TRACE or DEBUG to see

Re: How can we save state of a GWT page?

2012-08-03 Thread Paul Stockley
If we need to remember more information than can reasonably stored on the URL we use local storage. The data we need to remember is represented as javascript overlay types and we serialize these to/from json. On Wednesday, July 25, 2012 8:14:20 AM UTC-4, Rubina wrote: Hi All, We have

Re: CellTree with CellTable nodes

2012-08-03 Thread Fille
I have a similar situation with expandable CellTable rows, inspired from this showcase: http://showcase3.jlabanca-testing.appspot.com/#!CwCustomDataGrid Lets say I have a CellTable displaying instances of class Book on each row. When I click one row (using SelectionModel), it gets expanded,

Re: How to vertically and horizontally centre the form panel inside a scroll panel

2012-08-03 Thread Andrei
I tried many different options, but at the end, I had to do to render the page, and then call: Scheduler.get().scheduleDeferred(new ScheduledCommand() { @Override public void execute() { myForm.getElement().setAttribute(style, margin: + ((myScrollPanel.getOffsetHeight() -

Re: How to vertically and horizontally centre the form panel inside a scroll panel

2012-08-03 Thread Andrei
Forgot to mention that you have to attach a resize handler to your page, and call this method each time a page is resized. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT 2.4 istantiate Activity

2012-08-03 Thread bond
Hi Pablo, how? In my principal view I've something this: ... g:tab g:header size='30' bTrattamenti/b /g:header l:ListaTrattamentoViewImpl/l:ListaTrattamentoViewImpl

Re: How to deploy GWT app on GAE which is connected to MySQL

2012-08-03 Thread Joseph Lust
Cloud SQL might work for you. I've not used it, but did request a trial and they provided it to me the next day. It should allow classic SQL like queries. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Application cache searches cssmap

2012-08-03 Thread Gregor Frey
Hi, I try to follow the video about GWT and Mobile of Chris Ramsdale (http://www.youtube.com/watch?v=N1aCo5LvMf8) and let the linker generate the appcache-manifest. But when the browser loads the manifest it fails because the manifest refers to cssmap files within a cssResource directory,

Re: which EventBus

2012-08-03 Thread Clint Checketts
That would be a good/quick fix for GWT 2.5 to deprecate the old 'start' method and fix the signature. On my project we have a base Activity and that is exactly what I did, so we always have the right EventBus imported.. -Clint On Thu, Aug 2, 2012 at 8:55 AM, Jens jens.nehlme...@gmail.com wrote:

Google Geocoder

2012-08-03 Thread nesrine doghri
Hi , How can I use Google Geocoder with GWT (I give the longitude and the latitue and it gives me back the position on the map ) ! I can't find any tutorial !! Help please -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Application cache searches cssmap

2012-08-03 Thread Gregor Frey
I managed to remove the cssmap entries from the manifest by including them in the list of resources to skip in the SimpleAppCacheLinker class. The question remains: what are the cssmaps and why are they EmittedArtifacts, when not emitted? Is this a bug in the 2.5 compiler / linker? Ciao Gregor

Re: which EventBus

2012-08-03 Thread FrugoFrog
yes that's what I mean. I inherited the code that uses RF and MVP. Classes implement Activity interface defined in com.google.gwt.activity.shared and this needs the Event bus from the same package. I'm not sure if this will change in future releases of GWT. Looks a bit inconsequent to me But hey

Re: which EventBus

2012-08-03 Thread Jens
Changing it would be a breaking change for existing apps, thats why Activity still uses the old EventBus in its start method. Maybe this will change in the future but if you think about that the deprecated addXyzListener() methods in GWT are deprecated since GWT 1.6 it will probably take a

Re: Working with Dates/Timezones

2012-08-03 Thread Jens
Thank you guys. As we currently operate in Germany only we have implemented a custom date serializer that does not de/serialize a date by using its milliseconds (date.getTime()) but instead uses the real date information (date.getYear(), date.getMonth(), ...). So its somewhat similar to

Re: Suggesting a new mode: instant in-place changes of GWT Javascript code?

2012-08-03 Thread Dieter K
I read https://developers.google.com/web-toolkit/articles/superdevmode -- I am not sure if this is 100% what I had in mind but it is progress. At least we are directly using Javascript. Anybody knows how long this recompilation-step takes? I was hoping for an instant refresh by modifying JS

Re: Working with Dates/Timezones

2012-08-03 Thread Joseph Lust
I hope that works for you. That is pretty much what we did when Germany started to cause issues. I put the code for it up in an earlier post: https://groups.google.com/forum/?fromgroups#!topic/Google-Web-Toolkit/XDl_P_xOJPo viel Glück, Joseph -- You received this message because you are

Re: Working with Dates/Timezones

2012-08-03 Thread Jens
However, in my personal applications (RunPartner.com) logged run time of day does matter. For this the user TZ is harvested from the browser, as well as if it is DST or not, all just using a hidden JS block. How do you get that information? From my understanding you cant do that

Re: Application cache searches cssmap

2012-08-03 Thread Joseph Lust
Just guessing, but since the SymbolMaps are used to deobfuscate the error messages from the obfuscated JS, perhaps these cssmaps are used for deobfuscating the obfuscated CSS class names? I wish the browser plugin let you see the CSS classes for their original names as that would get our UI

Re: Google Geocoder

2012-08-03 Thread Joseph Lust
The GeocoderAPI is just a web service. Use RequestBuilder to build a request along API guidelines and call it. If you want you could also dress it up to make it fancier, i.e. made you own getZip(Lat, Lon) and have that make the request. Of course, keep API rate limits and daily query limits in

Re: Working with Dates/Timezones

2012-08-03 Thread Jens
I hope that works for you. That is pretty much what we did when Germany started to cause issues. I put the code for it up in an earlier post: https://groups.google.com/forum/?fromgroups#!topic/Google-Web-Toolkit/XDl_P_xOJPo Yeah thats exactly the same class. Although I first used

Re: Suggesting a new mode: instant in-place changes of GWT Javascript code?

2012-08-03 Thread Jens
I read https://developers.google.com/web-toolkit/articles/superdevmode -- I am not sure if this is 100% what I had in mind but it is progress. At least we are directly using Javascript. Anybody knows how long this recompilation-step takes? I was hoping for an instant refresh by modifying

Re: Suggesting a new mode: instant in-place changes of GWT Javascript code?

2012-08-03 Thread Jens
In general, if you can modularize your app into fairly small development modules you can get pretty good results with SuperDevMode when only developing on a single small module and not on entire application. -- J. -- You received this message because you are subscribed to the Google Groups

help with celltable problem in devmode

2012-08-03 Thread David
I'm having a weird problem in most of my celltables that only happens in devmode. Compiled javascript works just fine. I'm using gwt2.3.3 and everything has been working for close to a year now. The only thing that's changed recently is some css styling. Anyway, my cell tables initialize

Re: Is there any chart library for GWT?

2012-08-03 Thread Rob
Hi, +1 for gwt-highcharts Ext GWT (GXT) demo: - http://gwt-cx.com/extgwt-serendipity/Serendipity.html#Dashboards Smart GWT demo: - http://gwt-cx.com/serendipity/Serendipity.html#Dashboards Cheers Rob Kiahu.com On Friday, August 3, 2012 5:25:06 PM UTC+10, Harald Pehl wrote: In my current

Re: GWT OpenLayers new website and showcase

2012-08-03 Thread Rob
Awesome, nice demos. On Friday, August 3, 2012 4:41:26 AM UTC+10, Frank wrote: Just a quick note that we put some work in the website, and especially in a new showcase for GWT-Openlayers (a GWT wrapper for the great OpenLayers library) : New website : http://www.gwt-openlayers.org/ New

Re: how to use several html instead of just one hosted html

2012-08-03 Thread Rob
Hi, You can use an EntryPoint dispatcher if your application has multiple host pages. - public class EntryPointDispatcher implements EntryPoint { public void onModuleLoad() { Log.debug(EntryPointDispatcher - onModuleLoad()); try { // get the Host Page name Dictionary

Re: Working with Dates/Timezones

2012-08-03 Thread Joseph R Lust
Jens, Here is the TZ script from my hobby running site. It is a tad hackish (from 4 years ago), set to update a hidden select menu in forms. I have not yet had any complaints about it's output, but I don't promise anything either. Hopefully you might find it helpful and can make a JSNI derivative

Re: Working with Dates/Timezones

2012-08-03 Thread Joseph Lust
Jens, Here is the TZ script from my hobby running site. It is a tad hackish (from 4 years ago), set to update a hidden select menu in forms. I have not yet had any complaints about it's output, but I don't promise anything either. Hopefully you might find it helpful and can make a JSNI

[gwt-contrib] Rename aria.Role to aria.RoleImpl and make private. (The next step will be to (issue1802803)

2012-08-03 Thread skybrian
Reviewers: mdempsky, Description: Rename aria.Role to aria.RoleImpl and make private. (The next step will be to rename aria.RoletypeRole to aria.Role.) Rationale: this hides the implemention so that it's not in the public API, and we can change the implementation more freely in future GWT

[gwt-contrib] Rename RoletypeRole to Role and improve the javadoc. Subtypes of Role now (issue1799804)

2012-08-03 Thread skybrian
Reviewers: atincheva, Description: Rename RoletypeRole to Role and improve the javadoc. Subtypes of Role now link to the ARIA specification. Please review this at http://gwt-code-reviews.appspot.com/1799804/ Affected files: M user/src/com/google/gwt/aria/client/AlertRole.java M

[gwt-contrib] Re: Added support for group sequences - including Default group overrides. (issue1798803)

2012-08-03 Thread nchalko
lgtm http://gwt-code-reviews.appspot.com/1798803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors