Re: Should onbeforeunload work in GWT JSNI?

2009-12-17 Thread Damon Lundin
In GWT, use Window.addWindowClosingHandler and setMessage on the Window.ClosingEvent. Well, how about that? That works. Thank you very much! I'm still a little curious though why the JSNI version doesn't work. -- You received this message because you are subscribed to the Google Groups

Re: GWT Simcity like game

2009-12-17 Thread Darth
wow impressive :) thanks for sharing. On Dec 16, 12:13 am, hemodroid hemodr...@gmail.com wrote: Hi, I'm working on a simcity like game developed with GWT. For any question or feedback dont hesitate to contact me ;) http://www.gaecity.com -- You received this message because you are

Re: Use smartgwt or not

2009-12-17 Thread gcstang
I've been using SmartGWT now with GWT for a few versions and it works over all really well considering how relatively new it is. I previously used gwtext and SmartGWT has a lot more capability. If you're after a very professional look without having to accomplish all the CSS on your own SmartGWT

Re: Use smartgwt or not

2009-12-17 Thread Yozons Support on Gmail
We're just now evaluating this ourselves, but we do like the look of their large variety of widgets, but it is big and takes time to really evaluate it all and there are myriad options from LGPL through proprietary EE. No doubt, much depends on your app's needs. Ours is more business-focused, so

Re: Unittesting a Generator ?

2009-12-17 Thread Gal Dolber
I am asking myself the same. I couldn't find any way to do that, but you can always test the generated one. There is another tip: If you compile the project and specify the -gen argument to the compiler, then execute the project on debug mode and attach to the project the gen directory like

Re: GWT Random

2009-12-17 Thread Brandon Tilley
GWT Random uses the browser's underlying JavaScript math library to generate random numbers: public static native int nextInt(int upperBound) /*-{ // ~~ forces the value to a 32 bit integer. return ~~(Math.floor(Math.random() * upperBound)); }-*/; I ran a quick test of this code in

Re: GWT Random

2009-12-17 Thread Brandon Tilley
I apologize, hemodroid, upon further research I was able to replicate this using the version of nextInt() with no arguments: public static native int nextInt() /*-{ // ~~ forces the value to a 32 bit integer. return ~~(Math.floor(Math.random() * 4294967296) - 2147483648); }-*/; This

Re: Unittesting a Generator ?

2009-12-17 Thread Jamie Gennis
I have a solution to this in gwt-remote-actionhttp://code.google.com/p/gwt-remote-action/. I create a real TypeOracle and feed it the actual .java files from GWT for the JRE and some GWT classes, then I feed it the .java files for the test interfaces that are to be generated and run my unit tests

Re: UiBinder styling superseded programmatic styling

2009-12-17 Thread Thomas Broyer
On Dec 17, 9:25 am, Itzik Yatom itzik...@hotmail.com wrote: When adding the attribute styleName to an UiBinder XML element, GWT translates it to setStyleName method call. The problem is when using a custom Composite class that already has called to setStyleName method, UiBinder supersedes

Page load slow and blank page

2009-12-17 Thread Michael W
We have GWT application and running well for most users of the world. However, we got report from some users 1) Some said the site is slow 2) Some said the they got blank page. Does anyone have experience or know how to address those issues? Thanks --Michael -- You received this message

Re: Google Maps, Marker does not close

2009-12-17 Thread Francois
Hello Eric Thanks for the reply, please refer to this post of mine. Where I've managed to fix the problem. However I have an couple of questions about the issue at hand. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/85674e6db8e97d1a# On Dec 17, 4:17 pm, Eric Ayers

Re: New layouts not playing nicely with Maps

2009-12-17 Thread Eric Ayers
Hi Jeff, I played around with this and got it to work with these panels: private MapWidget map; // GWT module entry point method. public void onModuleLoad() { Maps.loadMapsApi(null, null, false, new Runnable() { public void run() { LatLng cawkerCity = LatLng.newInstance(39.509, -98.434); //

Eclipse plugin Development Mode issue (uses GWTShell)

2009-12-17 Thread Henry
The Eclipse plugin uses GWTShell.class (a deprecated class) instead of DevMode.class The options for GWTShell and DevMode are quite different. I'm using a directory (WebContent/jsgenerated) other than war for my compiled code There is no way in the plugin to specify a module. The fix is to replace

Re: Announcing GWT 2.0 and much, much more...

2009-12-17 Thread pablosborges
I think the GWT team had to focus on future versions of the framework, to create new widgets, like gxt and smartgwt. Oh yes attract new developers, is one suggestion. On 10 dez, 15:43, Célio ccid...@gmail.com wrote: Great job! Thank you all guys from Google, you rock! I'm looking forward to

Re: Page load slow and blank page

2009-12-17 Thread Trevor Skaife
If they get a blank page it's probably because they don't have javascript enabled. As far as the site being slow there are many problems that could be going wrong. It could be that you have a large javascript file that is taking a long time to download, you could be chaning lots of asynchronous

Re: Use smartgwt or not

2009-12-17 Thread Flemming Boller
Hi I think these javascript wrappers will have a hard time, with all new features coming from GWT. Code split, UiBinder etc.. I am excited to see how they will integrate it. I used ext-gwt, which had a pretty big startup-download-size. Unfotunally it was javascript coming from EXT, and not

Re: Eclipse plugin Development Mode issue (uses GWTShell)

2009-12-17 Thread Chris Ramsdale
That's correct. If the Eclipse Plugin finds a war/WEB-INF dir, and a war/WEB-INF/web.xml file under your project's root, it will launch DevMode. If it doesn't find them, it will assume that it's launching a legacy project and launch GWTShell. - Chris On Thu, Dec 17, 2009 at 2:10 PM, Henry

Graceful shutdown of development mode with Eclipse plug in for GWT 2.0?

2009-12-17 Thread Dazza
Some of my session objects implement HttpSessionBindingListener so that they can do stuff on valueUnbound when the session ends (such as when the servlet container is shutdown). In the old hosted mode this worked fine as closing the hosted mode window caused a graceful shutdown of jetty. With

Re: 1.7-2.0 hosted mode no longer working

2009-12-17 Thread Chris Ramsdale
Actually, if you are using a Web App launch config, it's even easier than I initially stated. You can omit the -noserver flag, and simply uncheck the Run built-in server from the main tab of the debug/run config view. On Wed, Dec 16, 2009 at 9:15 AM, Chris Ramsdale cramsd...@google.comwrote:

Eclipse Plugin: Honor Eclipse path exclusion patterns

2009-12-17 Thread Rodrigo
Please consider: Google´s GWT plugin for Eclipse is ignoring Eclipse´s configuration for build path exclusion. TIA, R. -- 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: Eclipse Plugin: Honor Eclipse path exclusion patterns

2009-12-17 Thread Rodrigo
Edit: It´s the GWT compiler that ignores the exclusions set. R. On 17 dez, 18:06, Rodrigo rodrigoglsi...@gmail.com wrote: Please consider: Google´s GWT plugin for Eclipse is ignoring Eclipse´s configuration for build path exclusion. TIA, R. -- You received this message because you are

Re: GWT Random

2009-12-17 Thread hemodroid
No problem :) On 17 déc, 18:23, Brandon Tilley codemaster...@gmail.com wrote: I apologize, hemodroid, upon further research I was able to replicate this using the version of nextInt() with no arguments:   public static native int nextInt() /*-{     // ~~ forces the value to a 32 bit integer.

Re: How make TabLayoutPanel work with UiBinder?

2009-12-17 Thread paloalto team
Set a Height on the TabLayoutPanel. (100%, or 300px should do) If you take a close look at the impl. and the default styles, the parent TabLayoutPanel drops down at least 3 children div's with absolute positioning. In fact, you will have to make some overhauls to get this control to expand with

UIBinder and Inherited User Controls

2009-12-17 Thread paloalto team
The big question: Can any custom control have bound children in markup, without writing a new parser specific for this new type? Here is an example of a failed scenario from inheriting TabLayoutPanel: The class File: package com.client.ui.Controls; import

Re: UIBinder and Inherited User Controls

2009-12-17 Thread paloalto team
So, this appears to be an issue with custom child elements. In the case of the TabLayoutPanel, the 'tab', 'header', and 'customheader' aren't really types. Hence the need for the Element Parser *somewhere* during compilation. This is tough to work around.. -- You received this message because

Re: UiBinder styling superseded programmatic styling

2009-12-17 Thread Arthur Kalmenson
Thanks for clearing that up Thomas, I didn't know you could do that with uibinder! -- Arthur Kalmenson On Thu, Dec 17, 2009 at 12:51 PM, Thomas Broyer t.bro...@gmail.com wrote: On Dec 17, 9:25 am, Itzik Yatom itzik...@hotmail.com wrote: When adding the attribute styleName to an UiBinder

Re: uibinder with MVP and interfaces

2009-12-17 Thread Arthur Kalmenson
Hey Tristan, You're correct, that was the issue. I had boiled it down to a simpler case where you use @UiField(provided=true) HasText someField; and try to provide an implementation of HasText while using a g:Button in uibinder. The way around this, if you want to continue using interfaces in

Re: Graceful shutdown of development mode with Eclipse plug in for GWT 2.0?

2009-12-17 Thread Yozons Support on Gmail
This would be nice for those who have a robust server side system in place. Right now, we're definitely testing how the app reacts to a hard crash. :) -- 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: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2009-12-17 Thread Al Murauski
The same problem. We're facing this after upgrading to gwt 2.0. Any ideas? Thanks in advance! On 8 дек, 19:24, Luis Fernando Planella Gonzalez lfpg@gmail.com wrote: Hi. We're using GWT 1.7 and I'm starting to experiment with 2.0 RC2 to evaluate GWT.runAsync(). However, now as I

Re: Use smartgwt or not

2009-12-17 Thread Yozons Support on Gmail
In the end, it's all JS to the client, so not sure what wrapper would really mean. The downside may be they can't get the same optimizations that come with the Java-to-JS compiler as it increases in capability and can gen browser-specific versions. But if you need to move now, GWT just doesn't

Re: TabLayoutPanel doesn't show its content

2009-12-17 Thread paloalto team
Set the height of the TabLayoutPanel to something. (100%, or value- unit) (via class .gwt-TabLayoutPanel) This is because the header and all child containers are absolutely positioned. On Dec 17, 6:54 am, mariyan nenchev nenchev.mari...@gmail.com wrote: Hi, I tried to use TabLayoutPanel, but

Custom events and scope

2009-12-17 Thread John Armstrong
Hi everyone, I am using EventBus and I have a tab panel. Each tabitem is an instance of a class (PoliciesTab, SettingsTab etc ) that extends TabItem. These tabs have some common elements which I added to each TabItem (each Tab Item gets its own DateFilterFooter or HelpPanel). In this case I have

Re: Graceful shutdown of development mode with Eclipse plug in for GWT 2.0?

2009-12-17 Thread Dazza
On Dec 18, 11:20 am, Yozons Support on Gmail yoz...@gmail.com wrote: This would be nice for those who have a robust server side system in place. Right now, we're definitely testing how the app reacts to a hard crash. :) One thing I found is that using the reload web server option in the eclipse

Re: GWT Random

2009-12-17 Thread Brandon Tilley
Submitted issue #4372 (http://code.google.com/p/google-web-toolkit/ issues/detail?id=4372) for this problem. On Dec 17, 1:13 pm, hemodroid hemodr...@gmail.com wrote: No problem :) On 17 déc, 18:23, Brandon Tilley codemaster...@gmail.com wrote: I apologize, hemodroid, upon further research I

Re: UiBinder styling superseded programmatic styling

2009-12-17 Thread Jeff Chimene
On 12/17/2009 03:15 PM, Arthur Kalmenson wrote: Thanks for clearing that up Thomas, I didn't know you could do that with uibinder! See http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/uibinder/test/client/WidgetBasedUi.ui.xml around line 585 -- You

An internal compiler exception occurred...

2009-12-17 Thread Jeff Chimene
Hi, I'm getting the following error: [ERROR] An internal compiler exception occurred com.google.gwt.dev.jjs.InternalCompilerException: Unexpected error during visit. at com.google.gwt.dev.js.ast.JsVisitor.translateException(JsVisitor.java:462) at

Re: Geolocation without Gears?

2009-12-17 Thread Eric Ayers
Unfortunately, when there is no match for the IP address, the google.loader.ClientLocation property will be null. If you've got the google.loader property configured, but not google.loader.ClientLocation, you're out of luck. Anyway, I've got a patch up for the gwt-google-apis that wraps the

Remove and Add widget

2009-12-17 Thread noob_boy
Hi, I have a form with many horizontal Panels each of 25 pixel width with BORDERS visible. Whenever I remove a horizontalPanel from the form, the widget disappear. but the borders just shrink a little(to around 15 pixel width). Even layout() doesnt fix it and whenever I add anything to the Form

PropertySheet

2009-12-17 Thread noob_boy
Hi, I have 2 combo boxes in a form and changing value on one changes value on others. But when page loads, I know the value of both and so I set it. But a SelectionChangedEvent is being fired on page load and I lose the value in 2nd combo(due to clearSelections() - which I need). Is there a way

Re: GWT Caching in Internet Explorer

2009-12-17 Thread davidroe
can you try option 4, but insert the date into the URL at the time it is clicked, not when the page is rendered? On Dec 15, 2:41 am, Salil salil.k...@gmail.com wrote: Hello Forum Members, I am facing a peculiar issue of Caching in internet explorer with my GWT Application. This issue does not

Re: GWT Simcity like game

2009-12-17 Thread Eirik Brandtzæg
Hey. Really impressive! Did you ever consider using Canvas? (GWTCanvas for instance) On Dec 17, 2009 5:23 PM, Darth dummym...@gmail.com wrote: wow impressive :) thanks for sharing. On Dec 16, 12:13 am, hemodroid hemodr...@gmail.com wrote: Hi, I'm working on a simcity like... -- You

Simple combo box with Default selection

2009-12-17 Thread noob_boy
Hi, The following doesnt show the selected value in the combo . Y? I am trying to show it in the text box attached to the combo. SimpleComboBox box = new SimplecomboBox(); box.add(first); box.add(second); box.setRawValue(second); It always shows blank in the text box. Any solution? Thanks

Re: Disable backspace

2009-12-17 Thread Andrey
Hello! Yes, I just added: Window.addWindowClosingHandler(new ClosingHandler() { @Override public void onWindowClosing(ClosingEvent event) { event.setMessage(My program); } });

Re: GWT 2.0 + MVC = PureMVC ?

2009-12-17 Thread Joe
If you follow the second link, watch the video and you should understand, as Maryan said. The following paragraph is almost the same words Ray Ryan spoke at the Google IO concerning MVC and MVP: I keep saying MVP, MVP, MVP. And I did not say MVC. Now the odds are that when you got out of the

UiBinder styling superseded programmatic styling

2009-12-17 Thread Itzik Yatom
When adding the attribute styleName to an UiBinder XML element, GWT translates it to setStyleName method call. The problem is when using a custom Composite class that already has called to setStyleName method, UiBinder supersedes the Composite style. I wish that UIBinder would call to addStyleName

Re: Migration Problem (From 1.5 to 2.0)

2009-12-17 Thread Haydar
I think I found the problem. One of the projects in my system has nocache.js file but the other one doesn't have. How can I solve this? On 17 Aralık, 09:33, Haydar haydarim...@gmail.com wrote: Hi Keith, Thanks for your answer. I have managed to overcome this problem. Now it's working. But now

Re: GWT 2.0 + MVC = PureMVC ?

2009-12-17 Thread Alexander
Guys, thanks for the link to this video. It really opened my eyes! I am so thankful! 2009/12/17 Joe joechahh...@gmail.com If you follow the second link, watch the video and you should understand, as Maryan said. The following paragraph is almost the same words Ray Ryan spoke at the Google

Use smartgwt or not

2009-12-17 Thread azure
Hi all, There are many gwt experienced developers in this group. I am starting a project and am in a dilemma where to use smartgwt or not. There are many advantages of using it (like filters/sorting in list grids etc). However I think there will be many problems later on (for example changing the

Re: GWT 2.0 + MVC = PureMVC ?

2009-12-17 Thread balachandra maddina
Hi Joe, Thx for the details. actually, i did looked at ryan talk before. during the session there were questions like if there is a working model which working then why would shifting to this pattern be significant. well, i have my ans for those then and now. and yes, MVP is a better pattern

Re: Use smartgwt or not

2009-12-17 Thread mariyan nenchev
Hi, i have used smart gwt for some projects, and i was not impressed from smart gwt, but it you decide smart gwt ee its good to use, but it is paid. So only smart gwt is painful to integrate with your server side (at least it was before 3 months). Also the widgets are a little slower than the

Fewer compile permutations using ant: Can user.agent be passed in via command-line?

2009-12-17 Thread dduck
Hi, As described here: http://code.google.com/intl/da/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#Can_I_speed_up_the_GWT_compiler ...it is possible to cut down on the number of browsers one compiles for. Unfortunately the solution proposed is not very elegant for our purposes. We would

Unittesting a Generator ?

2009-12-17 Thread hjo1620
I have a class MyGenerator extends Generator, that I want to test. I need pointers to existing unit test code of a Generator unittest. Looked in the GWT code for readymade mocks to no avail. /hw -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Increased compile resource performance[excluding draftCompile] with single perm

2009-12-17 Thread Chris Lowe
Will you be giving the -XX:+UseCompressedOops option a try when on the 64-bit JVM? I'd be interested to hear about your experiences. Good luck. C. On Dec 17, 6:20 am, Gerhard Davids glacieredp...@gmail.com wrote: Hi, Thanks for all the responses. The build tips surely helps Lukas. Yeah

Re: GWT 2.0 + MVC = PureMVC ?

2009-12-17 Thread Joe
Alexander and Balachandra, you are welcome anytime, i'm glad things are clearer now. And like you said, Bala, it depends on the context, sure if you already have your application, designed in MVC and it's working for you, sure no need to build the whole application again in MVP. However, if

MVP: show view after onLoad is done

2009-12-17 Thread mariyan nenchev
Hi, How can i show some view after onLoad is done. I have a popup which needs to be positioned according to some other widget, but this widget is also dynamically positioned, so i need to load the dom first and after that position the popup: pop.setPopupPosition(lastLabel.getLeft(),

Joseph Favara/HQ/Corp/OAI is out of the office.

2009-12-17 Thread Joseph . Favara
I will be out of the office starting 12/17/2009 and will not return until 12/21/2009. I will respond to your message when I return. If this is urgnet please contact Narayanan Pillai at 105986 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Offline Mode in GWT

2009-12-17 Thread John V Denley
We will be implementing offline capabilities in the new year, and are fully intending to use gears for that, Not looked at how its going to work at all yet though!! On Dec 16, 2:28 pm, Joe Cole profilercorporat...@gmail.com wrote: We use adobe air. Gears doesn't have support for encrypted local

GWT list box onChange event not triggerd

2009-12-17 Thread buminda
Hello , I have a list box included in one of the cell in the flex table . The list box is added after setting the change handler. When the list box is clicked and item changed after the selection , the corresponding event is not fired. ( i.e onChange event is not fired ) .

Google Maps, Marker does not close

2009-12-17 Thread pfdevil
Hello I have an issue with an marker that does not want to closed when clicked. I copied the code from this tutorial. http://gwt.google.com/samples/HelloMaps-1.0.1/HelloMaps.html#Click%20Handling Here is my code: public class SimpleMaps implements EntryPoint{ private InfoWindow info =

Google GWT and Maps, marker does not close

2009-12-17 Thread pfdevil
Hello I have an issue with an marker that does not want to close when clicked. Basically adding a marker is fine, but when I click on the marker it is supposed to close but it doesn't. I copied the code from this tutorial. http://gwt.google.com/samples/HelloMaps-1.0.1/HelloMaps.html#Click%20...

Re: Cached version of nocache.js is loaded on IE8

2009-12-17 Thread Mike Bedard
write a filter to look for the .nocache file, then set the response Header with these name value pairs: ( Expires:pick a time), (Pragma:no-cache) and (Cach-control:no-cache, no-store, must-revailidate).     -mike --- On Wed, 12/16/09, Thomas Broyer t.bro...@gmail.com wrote: From: Thomas

Re: Google Maps, Marker does not close

2009-12-17 Thread Eric Ayers
Hello pfdevil, Set a breakpoint in your MapClickHandler instance with a Java debugger (like running in Debug mode in Eclipse) to get a handle on what your code is doing. I see one odd thing. Although it isn't necessarily wrong, you're creating a new marker every time the handler goes off. You

Validating Servlet Tags Problem

2009-12-17 Thread Haydar
Hi When I run my project, it gives me a warning that says: [WARN] Module declares a servlet class 'com.myapplication.server.myService' with a mapping to '/myGWT/my', but the web.xml has no corresponding mapping; please add the following lines to your web.xml: servlet-mapping

Re: Google GWT and Maps, marker does not close

2009-12-17 Thread Francois
I found the problem. But I don't really understand why? map.addMapClickHandler(new MapClickHandler() { public void onClick(MapClickEvent e) { MapWidget sender = e.getSender(); Overlay overlay = e.getOverlay(); LatLng point = e.getLatLng();

Re: SEO for GWT

2009-12-17 Thread Chris Ramsdale
Michael, 2. If the answer is yes, for my Google SiteMap, should I put first URL or second one into SiteMap. - You'll want to include the #! token in your sitemap (e.g. the second one). Excellent to see that you guys are making progress with this. We're smack in the middle of a shift towards

Re: GWT list box onChange event not triggerd

2009-12-17 Thread jmpeace
Hi, I am having the same issue but only when I use the keyboard to change the ListBox selected Item. If mouse is used the event is triggered as expected. On 17 dic, 09:17, buminda bumi...@gmail.com wrote: Hello ,                 I have a list box included in one of the cell in the flex table

Re: can i send http request to a subdomain from gwt

2009-12-17 Thread jhulford
Can't you set up Apache directives to handle .php and .html files and and forward your comet requests through the jk module to Tomcat? To your browser it should all look like it's going to the same domain. On Dec 15, 10:57 am, ben fenster fenster@gmail.com wrote: i want to use apache to

Re: UiBinder styling superseded programmatic styling

2009-12-17 Thread Arthur Kalmenson
You could either call addStyleName in the backing Java class, or use a div around your widget and have multiple CSS classes there. But yes, as far as I can see, uibinder assumes setsomething for properties on a widget. -- Arthur Kalmenson On Thu, Dec 17, 2009 at 3:25 AM, Itzik Yatom

Re: can i send http request to a subdomain from gwt

2009-12-17 Thread ben fenster
i am using the gwt-comet lib and there is some trouble with this configuration On 17 דצמבר, 16:51, jhulford jhulf...@gmail.com wrote: Can't you set up Apache directives to handle .php and .html files and and forward your comet requests through the jk module to Tomcat?  To your browser it

Re: GWT Simcity like game

2009-12-17 Thread hemodroid
I added a little guide to welcome all those who feel a little lost :) On 15 déc, 20:42, hemodroid hemodr...@gmail.com wrote: Hi, thx for your enthusiasm :) I'm not going to open source it for now, but i'm thinking about it. The engine is based on the lincity

Re: GWT Simcity like game

2009-12-17 Thread mariyan nenchev
Very interesting. How do you use gwt exactly? -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: MVP: show view after onLoad is done

2009-12-17 Thread Jeff Chimene
Well, A couple ideas come to mind. The first one is to implement an IncrementalCommand. Have it return true while the view is building. Set a flag when the view is built. The IncrementalCommand checks this flag, does any cleanup and returns false. You can probably put the IncrementalCommand as an

Re: GWT Simcity like game

2009-12-17 Thread hemodroid
The game engine is written in java (about +5k lines of code). GWT compiles it in javascript en allows it to run in most browsers without the need a plugin :) On 17 déc, 16:23, mariyan nenchev nenchev.mari...@gmail.com wrote: Very interesting. How do you use gwt exactly? -- You received this

Development Mode makes de JVM crash

2009-12-17 Thread olmin
Hi, When I launch the devolopment mode everything seems allright, it gives me the url to use in the browser. But when first accesing to the url (it happend in all browsers) after a little while the development mode application crashes: # A fatal error has been detected by the Java Runtime

Re: GWT Simcity like game

2009-12-17 Thread mariyan nenchev
The idea is original. It would be interesting to open source it :). -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: How do GWT webpages (HTML) map to java files.

2009-12-17 Thread Trevor Skaife
Web pages don't map to specific java methods, in no way is this like struts or jsf. The only mapping you get from the one single html page that you have to the entry point class, from there you build your site accordingly. So in GWT there is only one page, you just dynamically change what the page

Re: MVP: show view after onLoad is done

2009-12-17 Thread mariyan nenchev
Hi, Not sure what you talk about. I have never heard about IncrementalCommand, but I will look at it. -- 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-tool...@googlegroups.com. To unsubscribe

Re: GWT Simcity like game

2009-12-17 Thread hemodroid
I'd like to have feed back on the reactivity of the interface. On my home computer it is very responsive while on my office computer it is a bit laggy. Thx for your help. On 17 déc, 16:42, mariyan nenchev nenchev.mari...@gmail.com wrote: The idea is original. It would be interesting to open

Re: Using GWT 2.0 where do Exception go?

2009-12-17 Thread karim
Thank you, that answered my question. On Dec 16, 5:14 pm, mxmtycoder spam4m...@gmail.com wrote: When you run the project, you get a new view called Development Mode that first shows the development mode url so you can copy/paste on a supported browser. If for some reason you don't see the

GWT Random

2009-12-17 Thread hemodroid
I'd dont know about u, but i noticed that in my Google Chrome browser, GWT Random always generate even numbers. -- 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-tool...@googlegroups.com. To

Re: development mode isn't updating

2009-12-17 Thread Rajeev Dayal
No, that should be fine. The important point is that anytime you have some sort of link route in your application that takes you away from the GWT app and back into it, you've got to make sure that the URL that's used when you re-enter the GWT app has the gwt.codesvr parameter. All seems to be

Re: Eclipse Plugin for GWT 2.0 release

2009-12-17 Thread Rajeev Dayal
On Wed, Dec 16, 2009 at 6:34 PM, Henry q8e...@gmail.com wrote: Is there a way in the Dev Mode plugin to set the war directory to something else? No, at this time, there is not, but that is a much-requested feature. We're doing some work on this right now. What class is the DevMode plugin

Re: Validating Servlet Tags Problem

2009-12-17 Thread Haydar
I have solved this issue. I have just forgotten to remove the servlet tags from gwt.xml files. But then I encountered a new problem. My system consists of two applications. First one is for log-in and user roles whereas the second one for screens. My first screen comes and I log in, then I can

Re: MVP: show view after onLoad is done

2009-12-17 Thread Jeff Chimene
On Thu, Dec 17, 2009 at 8:53 AM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, Not sure what you talk about. I have never heard about IncrementalCommand, but I will look at it. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/IncrementalCommand.html

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread Matteo
+1 DataBinding Validation Matteo On 17 dic, 02:47, Isaac Truett itru...@gmail.com wrote: I'd like to see SuggestBox get a little love. For example:

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread Miguel Ping
+1 for Databinding Validation +1 for a nice DataGrid +1 for nicer widgets On Dec 17, 10:09 am, Matteo matteo.fiande...@gmail.com wrote: +1 DataBinding Validation Matteo On 17 dic, 02:47, Isaac Truett itru...@gmail.com wrote: I'd like to see SuggestBox get a little love. For example:

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread DanielK
Version 2.0 tackled nearly all problems I had with GWT. Here is the rest that keeps me from being fully productive with it: - bidirectional UIBinder with mini expression language to completely remove programmatic UI, e.g.: MyWidget.java: class MyWidget extends DataboundComposite{ public

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread Nathan Wells
+1 to widget improvements +1 to removing listeners - though this is a breaking change on a minor release? +1 to bug fixes - all bugs, especially the ones I've starred :) +1 to data binding + validation On Dec 17, 5:28 am, DanielK dkim...@googlemail.com wrote: Version 2.0 tackled nearly all

Re: [gwt-contrib] now.. afetr GWT 2.0?

2009-12-17 Thread Arthur Kalmenson
Working on a draft one. What do folks here think is important? - data binding and validation frameworks, which would remove a _lot_ of boiler plate code and greatly increase productivity. - incubator clean up and perhaps splitting it into multiple projects? GWT 2.0 release is awesome, thanks

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread jopaki
Ability to wire a set of related many entities in the data binding declaration. For example, an Account entity. An Account has a set of related many AccountAddress entities. The data-binding framework should be able to map these AccountAddress entities to a set of nested form control groups

Re: [gwt-contrib] now.. afetr GWT 2.0?

2009-12-17 Thread Bart Guijt
1) Databinding a la Adobe Flex (they have *by far* the best solution[1] I've seen in all these toolkits). The GWT1.6 'HasValue' interface is a good starting point for this, hopefully it mixes well with UiBinder. 2) Scala compiler! 3) Make Compiler commandline options available to the

[gwt-contrib] wrong DTD generated for modules in GEP

2009-12-17 Thread Arthur Kalmenson
Hey everyone, I just noticed that the DTD used in the GWT modules generated by the GEP is incorrect. It points to http://google-web-toolkit.googlecode.com/svn/tags/2.0.0/distro-source/core/src/gwt-module.dtd which doesn't exist. Looks like the fix would be pretty easy though, just create a 2.0.0

[gwt-contrib] Call servlet.log(message) instead of servlet.log(message, (Throwable) null)

2009-12-17 Thread rice
Reviewers: bobv, Description: Some servlet containers throw an NPE on servlet.log(message, (Throwable) null) Since the spec doesn't really say what should happen in this case, we should call servlet.log(message) instead, just to be safe. Please review this at

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread tciaccio
+1 nice datagrid +1 remove deprecated listeners -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread FDG
- remove actual UiBinder limitations - supports printing using css media (so wrap themes around a @media screen) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread TiMeZoNe
hi, here is my wishlist: +1 UiBinder WYSIWYG Eclipse plugin +1 DataBinding Validation +1 DataGrid +1 multiple window management framework (forground/background like gwt-mosaic windowpanel (zIndex based), docking, maximize, etc ...) time --

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread xavier.meh...@gmail.com
Here are the enhancements I would like to have in GWT : * incremental compilation to have the same ease of use than with php or jsp ; we have for instance an internal application where we have merged php and gwt, and (from the ease of modification point of view) it is always simpler to make a

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread monkeyboy
-A nice DataGrid (maybe an improvement of the one in the incubator which works nice). -Improve change-compile-refresh development experience (like Brad Leupen said) -Support (plugin) for an IDE other than eclipse (Netbeans, Idea) would be nice. GWT 2.0 rocks. Keep up the good work. --

Re: [gwt-contrib] now.. afetr GWT 2.0?

2009-12-17 Thread Xavier M.
Here are the enhancements I would like to have in GWT : * incremental compilation to have the same ease of use than with php or jsp ; we have for instance an internal application where we have merged php and gwt, and (from the ease of modification point of view) it is always simpler to make a

[gwt-contrib] uibinder and bnudled CSS

2009-12-17 Thread nicolas.deloof
Hi I'm migrating some nice HTML-fragment to GWT. Thanks to UiBinder this is really easy and I get a nice result in few hours. I notice the uiBinder seems to rewrite the CSS rules according to browser support (I may be wrong) : my CSS uses CSS3 box-shadow : box-shadow: 2px 2px 5px #000;

  1   2   >