Re: permutation explosion

2012-04-21 Thread Michael Allan
Joseph Lust said: I misread this as *Precambrian Explosion *at first. In the Call for Action thread, the concern is a Permian Extinction. Michael -- 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: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-21 Thread Joshua Kappon
Great! Thanks for Ray, looking forward hearing from you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/F_zzFyjpQYMJ. To post to this group,

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-21 Thread Blake McBride
Thanks Ray. Even this small piece of information affects my decisioning and comfort level. Thanks. Blake McBride On Sat, Apr 21, 2012 at 5:50 AM, Joshua Kappon shuky.kap...@gmail.comwrote: Great! Thanks for Ray, looking forward hearing from you. -- You received this message because you

performance difference of GWT event stack on FF Chrome

2012-04-21 Thread magnum
I am writing a canvas (and later a webgl) mapping component that renders data fully on the client. You can see a very early prototype at http://gwtvectormaps.appspot.com/ What strikes me is a huge difference in performance between Firefox and Chrome. Normalyl I'd attribute the difference to

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-21 Thread Evan Ruff
Just phew Back to regularly scheduled programming. E On Friday, April 20, 2012 6:28:16 PM UTC-4, Ray Cromwell wrote: Over the past year, the GWT team did lose some people (Ray Ryan/Bob Vawter), some moved to other projects, and some recently left for a startup (Bruce/Joel/Kelly).

Disappointing start to GWT - Firefox different than Chrome

2012-04-21 Thread Steve
I'm trying out GWT and was disappointed to see the following basic program render very differently on Firefox and Chrome. Am I missing something? On Chrome the buttons fill the page. On Firefox the buttons fill vertically but not horizontally. Windows 7 GWT 2.4.0 Firefox 11.0 Chrome

Re: Disappointing start to GWT - Firefox different than Chrome

2012-04-21 Thread Qian Qiao
On Sat, Apr 21, 2012 at 23:59, Steve steve.f.ma...@gmail.com wrote: I'm trying out GWT and was disappointed  to see the following basic program render very differently on Firefox and Chrome.  Am I missing something? On Chrome the buttons fill the page.  On Firefox the buttons fill vertically

Re: Disappointing start to GWT - Firefox different than Chrome

2012-04-21 Thread Thomas Broyer
On Saturday, April 21, 2012 5:59:20 PM UTC+2, Steve wrote: I'm trying out GWT and was disappointed to see the following basic program render very differently on Firefox and Chrome. Am I missing something? On Chrome the buttons fill the page. On Firefox the buttons fill vertically

URGENT-Generating gwt web pages

2012-04-21 Thread vanessa vanessa
Hello , I have to create a generator that generates gwt code from a model as an entry. Can any one help me how to proceed ? And which template engine to choose ? Is velocity a good solution . Thanks a lot. Regards -- You received this message because you are subscribed to the Google Groups

Automatically generating GWT web pages

2012-04-21 Thread vanessa vanessa
Hello every body , I have to develop a gnerator that generate from a model GWT code that will be after that compiled and the output is a gwt web page. How can i proceed ? which template engine to use .. ? is velocity a good solution .. ? I'm needing your help. Thanks a lot . Have a good day.

GWT Internationlization

2012-04-21 Thread milind bhuktar
Hello All, I am new guy in gwt,I have did some basic project in GWT, and now I trying to do Internationalization in gwt. everything is fine Internationalization is done but it reload application,now my question is how to Internationalization without reload whole application . Thank ..to read

Re: AutoBean

2012-04-21 Thread govindan govindan
Hi, Create the factory instance at the starting of the method similar to below public void listtest(){ MyFactory fact = GWT.*create*(MyFactory.*class*); ... } Use the below code *points.add(fact.point(o).as());* * * *points.add(fact.point(n).as());* instead of *points.add(o);*

Re: AutoBean

2012-04-21 Thread Aidan O'Kelly
Ta for posting the work-around.. I missed the original reply the my original thread (subscribed too many lists!) but for reference, there is a bug entry in the issues list for this: http://code.google.com/p/google-web-toolkit/issues/detail?id=6904 I'll add a comment with this extra info. On Fri,

Re: Automatically generating GWT web pages

2012-04-21 Thread Gal Dolber
GWT have its own generators system you can use, also it allows you to use any template engine. Here's an example: http://francisshanahan.com/index.php/2010/a-simple-gwt-generator-example/ Or just google for GWT generator On Sat, Apr 21, 2012 at 6:35 AM, vanessa vanessa

Re: performance difference of GWT event stack on FF Chrome

2012-04-21 Thread Joseph Lust
Magnum, Really nice work! I was using a very similar world vector map this spring for an application in SVG and FF was always slower. It seems the Cairo rendering engine has a number of inefficiencies where it invalidates rendered layers and redraws them, even though they don't need to be

Re: Can This Be Done?

2012-04-21 Thread Joseph Lust
I've been using HighCharts in my sites and it works quite well. It is a little easier to use in my opinion than the Google Chart Apis, and there is nothing Flash about it at all, pure JS. You can assemble your chart config strings on the client or server side quite easily.

Re: GWT Internationlization

2012-04-21 Thread Alfredo Quiroga-Villamil
See the answer provided by Colin here: http://stackoverflow.com/questions/9062977/gwt-dynamic-internationalization Regards, Alfredo On Sat, Apr 21, 2012 at 3:34 AM, milind bhuktar mkbhuk...@gmail.com wrote: Hello All, I am new guy in gwt,I have did some basic project in GWT, and now I

Suggest a PlaceController Enhancement with the Delegate overriding

2012-04-21 Thread Brandon Donnelson
I'd like to suggest a PlaceController Enhancement with the Delegate overriding so I can have the place controller check if the warning has been cleared. I'd like to build my own popup dialog as the delegate which is non blocking, and goto the newPlace when my saving data is done, instead of

Re: RequestFactory/Editor AutoBean has been frozen error

2012-04-21 Thread Brandon Donnelson
I've has those too. I'm not sure there is enough source to diagnose. Do you have a list in your bean? 1. how do you init your driver? 2. do you have list that is null from server. 3. do you have a list that is null when you start then you add to list then edit it again. always init a list as

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-21 Thread Brandon Donnelson
I don't see GWT getting killed or going anywhere anytime soon. I see tons of development on it from quite a few different employees all over the world. I think they could nip this in the bud getting some employees to drip a little more info into the blogs on random topics now and then. --

[gwt-contrib] Re: SplitLayoutPanel should use ScheduledCommand instead of Command (issue1689803)

2012-04-21 Thread jat
LGTM, I'll get this committed next week. http://gwt-code-reviews.appspot.com/1689803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Incorrect doc for Style.Position (issue1688803)

2012-04-21 Thread jat
LGTM, I'll get this committed next week. http://gwt-code-reviews.appspot.com/1688803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors