Re: Is it possible to use images in the new UIBinder cell rendering feature?

2012-07-17 Thread Thomas Broyer
On Monday, July 16, 2012 10:23:00 PM UTC+2, Brad Leupen wrote: Hey there, I'm experimenting with the new 2.5 UIBinder Cell Rendering functionality. So far it's working well except that i can't see a non-sprite way to use images in my template. Am i missing something? You can use a

Re: NULL Points + Fire Fox

2012-07-17 Thread Thomas Broyer
On Tuesday, July 17, 2012 2:53:13 AM UTC+2, Paul Stockley wrote: I can tell you that if you are working in anyway with JSO objects, devmode will mask out null pointer exceptions. Maybe this is related. The problem has to do with the JS method devmode uses to execute the JSNI code in the

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-17 Thread YatiRaj B
Hello Kevin, It didn't work for me :( I'm working on HP 64bit WIndows Vista. Is that a problem for some reason? Not sure! Here's what I have/did: 1. I have everything latest: Juno, GPE 1.7 etc 2. The system did behave as explained by you when I changed Facet to 1.6 3. After the errors

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-17 Thread Kevin Moore
Raj, I have not tried to create a service as you did, I did it with a judo pojo. can you please try the steps I suggested, using a pojo , very simple one, then when it works modify the service to ignore the pojo and see what happens. On Jul 17, 2012 3:08 AM, YatiRaj B byati...@gmail.com wrote:

Re: Setting Locale language dynamically initially

2012-07-17 Thread Rana Issa
Thanks a lot, I will try this Rana On Wednesday, July 4, 2012 11:40:21 AM UTC+2, Jens wrote: You could build your app's host html page dynamically (jsp, php, whatever) and add a meta property to the head as described in

Re: How i change the locale language of the application

2012-07-17 Thread Rana
Hi, I found the problem! In the module file I need to set the order of search: set-configuration-property name='locale.searchorder' value='queryparam,cookie,useragent' / I had a space so, it caused GWT not to function well set-configuration-property name='locale.searchorder' value='queryparam,

Re: Setting Locale language dynamically initially

2012-07-17 Thread Thomas Broyer
On Wednesday, July 4, 2012 11:40:21 AM UTC+2, Jens wrote: You could build your app's host html page dynamically (jsp, php, whatever) and add a meta property to the head as described in https://developers.google.com/web-toolkit/doc/latest/DevGuideI18nLocale#LocaleSpecifying That way your

Re: RequestBuilder and Browser same-origin-policy

2012-07-17 Thread Deepak Singh
So how can i create such GWT 'Proxy' ? On Tue, Jul 17, 2012 at 3:25 AM, Jens jens.nehlme...@gmail.com wrote: Creating a GWT proxy service that is accessible under your domain is probably the best you can do. So you would post to your own server and then make a call from your server JVM to the

Re: RequestBuilder and Browser same-origin-policy

2012-07-17 Thread kim young ill
catch the request at your server code (either servlets or rpc-impl, make httpurlconnection to remote host post the params with it. get result write back to your client On Tue, Jul 17, 2012 at 11:06 AM, Deepak Singh deepaksingh...@gmail.comwrote: So how can i create such GWT 'Proxy' ? On

RequestFactory complex scenario

2012-07-17 Thread bond
Hi, we have this complex scenario: public Class A{ private long id; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = false) private ListA child = new ArrayListA(); @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY, optional = true) private A parent; }

Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-17 Thread Ed
I show a widget in a popup: it's added to the RootPanel and then in a deferred command I noticed that in Chrome the Widget is attached ( Widget.isAttached() method equals true) but when calling Document.get().isOrHasChild(widget.getElement()) it returns false I think this should be true

Re: Debugging is terribly slow

2012-07-17 Thread Magnus
Nevertheless I would like to play a game against you in your chess GWT app! ;-) Please send an email address and a nickname to ch...@muenchen-mail.de and I'll create an account :-) Magnus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Application size due to Internationalization

2012-07-17 Thread Rana
Hi, Does anyone have a solution to the huge size of application, when we apply to it internationalization using the static method? We are supposed to support 66 languages. The application takes a long time during compilation and the size of the application is huge, we cannot upload it to

Re: NULL Points + Fire Fox

2012-07-17 Thread Thomas Broyer
On Tue, Jul 17, 2012 at 1:36 PM, Sean slough...@gmail.com wrote: Thanks for the feed back guys. I'm going to have to deploy more often then, null pointers are nasty to find with no stack trace. No need to redeploy, use Super Dev Mode ;-) -- You received this message because you are subscribed

No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Hi, I am trying to test my code and I am encountering this issue. Please let me know what is the problem. com.java.client.ExportDataToExcelTest - is in my src folder and ExportDataToExcelTest.java - is in test folder. Is that the problem. I saw in the GWT tutorial that if the test forlder's

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
[ERROR] Line 13: No source code is available for type com.ag.sapwidgets.server.ExportDataToExcel; did you forget to inherit a required module? This is the problem. You are trying to convert to javascript the server class ExportDataToExcel. Either its package should be added to the set

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Hi Paul, thanks for your reply. I understand that server side code cannot be changed to Javascript. The question here was how can I test my server side logic in GWT. On Tuesday, July 17, 2012 9:59:05 AM UTC-4, Paul Robinson wrote: [ERROR] Line 13: No source code is available for type

DevMode not working in Chrome after update

2012-07-17 Thread Andy
I updated Chrome this morning and now when I try to use DevMode I get an error Could not load GWT DevMode Plugin and an offer to Download the GWT Developer Plugin. When I try to download it (it's already installed), it says Extensions, apps, and user scripts can only be added from the Chrome

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
On 17/07/12 15:07, Venkat wrote: how can I test my server side logic in GWT. GWT is client-side technology. To test server code, set up tests that are independent of GWT. That is, just create regular junit tests that check your server classes work properly. Paul -- You received this message

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Hi Paul, I have changed the test from GWT Test to JUnit Test. Now I am getting this exception. I am using SmartGWT, and in server side coding I have SmartGWT classes used for Business Logic. java.lang.UnsatisfiedLinkError:

GWT Maven build best practices

2012-07-17 Thread dhoffer
I'm assuming that classes in GWT's client folder have no reason to be compiled into classes and go into the war's WEB-INF/classes folder as GWT already converted that to JavaScript but what's the best way to prevent this? I'm using the gwt-maven-plugin to compile the GWT code in my war maven

Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-17 Thread Thomas Broyer
On Tuesday, July 17, 2012 2:06:41 PM UTC+2, Ed wrote: I show a widget in a popup: it's added to the RootPanel and then in a deferred command I noticed that in Chrome the Widget is attached ( Widget.isAttached() method equals true) but when calling

Re: DevMode not working in Chrome after update

2012-07-17 Thread Thomas Broyer
On Tuesday, July 17, 2012 4:16:03 PM UTC+2, Andy wrote: I updated Chrome this morning and now when I try to use DevMode I get an error Could not load GWT DevMode Plugin and an offer to Download the GWT Developer Plugin. When I try to download it (it's already installed), it says

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
I don't use SmartGWT, but it looks like you're using client-side code there. If you're using regular junit tests, then you must stick to server-side classes. It also looks like you're testing RPC code...do you really need to test from client to server in one test? Paul On 17/07/12 15:44,

Re: GWT Maven build best practices

2012-07-17 Thread Thomas Broyer
On Tuesday, July 17, 2012 4:53:12 PM UTC+2, dhoffer wrote: I'm assuming that classes in GWT's client folder have no reason to be compiled into classes and go into the war's WEB-INF/classes folder as GWT already converted that to JavaScript but what's the best way to prevent this? I'm

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-17 Thread YatiRaj B
Hi Kevin, Sure I'll try on a JDO Pojo and let you know. Plz give me some time, I'm stuck somewhere... Thank you for your support Raj. On Tue, Jul 17, 2012 at 12:48 PM, Kevin Moore kmoore...@gmail.com wrote: Raj, I have not tried to create a service as you did, I did it with a judo pojo.

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I have removed the client side code from the test case, the exception is gone. But I got one exception that is below. I am guessing this is because I did not specified the test folder in my Module. If yes, can you please tell me how can I do that. Usually we specify the src folder as source in

Re: GWT Maven build best practices

2012-07-17 Thread David Hoffer
Thanks, I thought I would look at the module structure you use in your gwt-maven-archetypes https://github.com/tbroyer/gwt-maven-archetypes. I downloaded the zip but when I try to run clean install I get this error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2

Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-17 Thread Ed Bras
Thanks Thomas for ur feedback. I am still using FF 6.0 (because of the plugin hassle) ;)... I am just about to push a test release and then have planned to update FF and it's plugin I will test it again then... (also with Document.get().getBody(). isOrHasChild(widget.getElement()) ) To be

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Let me explain what I did, I think you got confused of what I have said. I changed the package of my test class in test folder to the same server side package in src folder. com.java.client to com.java.server. Then the exception previously showed was gone and below exception showed up. I

Re: GWT Maven build best practices

2012-07-17 Thread Thomas Broyer
On Tuesday, July 17, 2012 5:37:21 PM UTC+2, dhoffer wrote: Thanks, I thought I would look at the module structure you use in your gwt-maven-archetypes https://github.com/tbroyer/gwt-maven-archetypes. I downloaded the zip but when I try to run clean install I get this error: [ERROR]

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
On 17/07/12 16:24, Venkat wrote: I have removed the client side code from the test case, the exception is gone. But I got one exception that is below. I am guessing this is because I did not specified the test folder in my Module. If yes, can you please tell me how can I do that. Usually

Re: GWT Maven build best practices

2012-07-17 Thread David Hoffer
Yes of course:) It's our corporate standard. Deleting the tests solved the problem. Thanks, -Dave On Tue, Jul 17, 2012 at 10:09 AM, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, July 17, 2012 5:37:21 PM UTC+2, dhoffer wrote: Thanks, I thought I would look at the module structure

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I have done that, now it is giving me the inherit issue, can you tell me I can inherit all the classes that I want to inherit like this. Can I use * to inherit all. inherits name=com.google.gwt.* / On Tuesday, July 17, 2012 12:14:52 PM UTC-4, Paul Robinson wrote: On 17/07/12 16:24, Venkat

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I did that, but some of the jars from SmartGWT are not getting inherited. and I don't know what are those classes modules are, so that I can inherit that. I tried giving the classes directly with the package structure, but it is changing it to module and saying it does not exist. On Tuesday,

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
Not as far as I know, but then why would you want to? You should only import the modules you need, otherwise I imagine the compile will take longer. Some google modules import other google modules, so you don't need to add an inherit for literally every one. Paul On 17/07/12 17:26, Venkat

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I mean I was just trying and the classes that it told me to inherit, I don't know the module for those classes. I am waiting for reply from SmartGWT forum, man these guys does not reply at all, these guys suck. GWT forum is bang on target, I really like it. Thanks for your support. On Tuesday,

Re: GWT 2.5 RC1 Is Here!

2012-07-17 Thread Satyarao Kambapu
good On Thursday, June 28, 2012 2:09:07 AM UTC+5:30, Rajeev Dayal wrote: Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here

Should UiBinder support @UiHandler for Elements?

2012-07-17 Thread Justin Santa Barbara
I'm experimenting with writing my UiBinders in relatively pure HTML (with Twitter Bootstrap), rather than using Widgets everywhere. My motivation is more about being designer friendly than performance etc. I've had some success manually overriding onBrowserEvent. However, inspired by

Visualization lib | Drawing a horizontal line across a columnChart

2012-07-17 Thread Anu
I want to draw a median line across horizontal google column chart. Do you any one having the solution -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

How can i get the Class method information at runtime using GWT Deffered Binding ?

2012-07-17 Thread Aaryan Khanna
This is really major issue with me in GWT project , i am trying to make one generic solution for the current scenario of my project in which i required some help here i am providing the code and the requirement related to same Class A has one method namely method A(Object

Failed to create an instance of 'XXX' via deferred binding

2012-07-17 Thread cpow99
I am new to GWT and have been experiencing a error when running the DMP in FireFox and IE. I have been able to establish the error occurs when attempting to add new properties to JSNI objects. For example an error is raised on the highlighted line below. private static final native void

Hi, cakephp and GWT

2012-07-17 Thread Alexcitron
Hello such, I would like to know the difference between cakephp and GWT! saludos! -- 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/-/h33Fk769yzkJ.

Start GWT compiler with super dev mode compiler settings

2012-07-17 Thread Rocco De Angelis
Hi All, is it possible to start the 'normal' GWT compiler with the same settings which will be used by the super dev mode recompiler (see com.google.gwt.dev. codeserver.CompilerOptionsImpl)? I think in general this should be possible or not? The GWT compiler already offers a -draftCompile

UiBinder and MVP: Problem with SuggestBox and CellBrowser

2012-07-17 Thread Oscar Perez
Hi, I am fairly new to GWT and still trying to figure out how things work. I am trying the activities and places tutorial and found a chicken-egg problem... I am trying to use a suggestbox but the problem is that takes a suggestoracle in the constructor. If I create the view beforehand (since

List/tabel to show complex data

2012-07-17 Thread Ralf Ovelgoenne
I want to show a list of complex data in a table or a list. This is a mockup example for one entry in the list or one row in the table: https://lh6.googleusercontent.com/-xvphtU0iziw/UAVBZ1hdV5I/AG4/-JpYSeqx8b0/s1600/mockup_result.png Which is the best way to do that with GWT? I played

Re: How can GWT war file deployed to sharepoint?

2012-07-17 Thread Victor Benarbia
What about the backend ? You probably need to run an ORM / Service layer. Can you describe your application ? Victor On Sunday, July 15, 2012 10:41:46 AM UTC-5, Joseph Lust wrote: It should not be hard for a static webapp, since GWT just makes some JS/CSS/HTML files. So if you can access

Re: Access shared class in client and server

2012-07-17 Thread karun
Hi can any one guide me. Thanks karun On Friday, July 13, 2012 1:37:29 AM UTC+5:30, karun wrote: Hi i have class in shared package, its very simple class which has a static variable. i want to assign a value for this static variable in server class and access the same value in

Re: Converting existing app to MVP

2012-07-17 Thread Daniel Kurka
It`s hard to give a general advice on how to tackle this best, because it highly depends on your current application and the structure of your code. Let me outline a few important things, which you should take into consideration: Navigation inside a one page app is a very important thing. It

List/tabel to show complex data

2012-07-17 Thread Thomas Broyer
For such a case where there aren't really any column, I'd rather use a CellList. Creating such a complex cell is made much easier with 2.5's UiBinder for Cells. You could also try 2.5's CellTableBuilder (where you could easily make the buttons on the upper right corner dynamic by adding

Re: DevMode not working in Chrome after update

2012-07-17 Thread Andy
I still get the error Could not load GWT DevMode Plugin and the normal offer to download it (even though it was and is again installed). On Tuesday, July 17, 2012 11:03:10 AM UTC-4, Thomas Broyer wrote: On Tuesday, July 17, 2012 4:16:03 PM UTC+2, Andy wrote: I updated Chrome this morning

Re: DevMode not working in Chrome after update

2012-07-17 Thread Thomas Broyer
On Tuesday, July 17, 2012 8:21:36 PM UTC+2, Andy wrote: I still get the error Could not load GWT DevMode Plugin and the normal offer to download it (even though it was and is again installed). Make sure click to play (or some other similar configuration for plugins) is disabled. I enabled

Re: Access shared class in client and server

2012-07-17 Thread Jens
You have to send an instance of LocalisedString from server to client. -- J. -- 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/-/a1URLfjEgD4J. To

gwt app unloading

2012-07-17 Thread Robert W
I created gwt module for embedding on any site, currently there are traditional html sites and one fully changeable by ajax calls. There is my pain: I can't unload gwt application. I'm trying nullify object tree in java, purge html by javascript, i created modularized version, but nothing

GWT 2.5.0-rc1 HtmlUnit has broken getElementsByTagNameNS implementation

2012-07-17 Thread Colin Alworth
GWT 2.4 included a custom copy of htmlunit, apparently built from rev 5940[1] of the htmlunit's source - the following unit test passes under that version using the com.google.gwt.xml.XML module: public void testSelectElement() { String xml = rootchild/childchild /child

Re: GWT 2.5.0-rc1 HtmlUnit has broken getElementsByTagNameNS implementation

2012-07-17 Thread Thomas Broyer
This is only a workaround but you can selectively disable the unit-test in HtmlUnit by annotating it with @DoNotRunWith(Platform.HtmlUnitBug); that way, it'll only be run in real browsers (when using -runStyle Manual, RemoteWeb, Selenium or ExternalBrowser) On Tuesday, July 17, 2012 10:34:31

DevMode for Firefox 14

2012-07-17 Thread Alan Leung
While I am technically no longer on the team, I got curious and started looking at the FF14 changes. There were some slight changes in the JS Object layout again but they seem easy enough to fix. I have built it for Linux 32 bit: http://acleung.com/ff14-linux32.xpi -Alan -- You received this

Re: List/tabel to show complex data

2012-07-17 Thread Joseph Lust
A question for Thomas and others: From the supplied mockup, why would one use the CellTable/CellList structures rather than just UiBinder? From what I can tell, just making a simple Widget/element with 3 spans, 1 label, and 3 buttons in a div would do the trick. As long as there are not

Re: GWT 2.5.0-rc1 HtmlUnit has broken getElementsByTagNameNS implementation

2012-07-17 Thread Colin Alworth
Right, thanks - that is a way to get around it, but in the case I'm after, queries are occurring on dom elements on the page, which means that any tests which use these widgets or tools are unable to be run in html - this has the potential to poison a lot of tests, by virtue of depending on a

Re: Application size due to Internationalization

2012-07-17 Thread Joseph Lust
Rana, I've read that internal Google apps must build to 240 permutations for the supported browsers and languages. To support this they: - Conduct draft compilations only using their desired dev permutation - Do complete compiles for releases/CI/test on a server farm There are

Re: Failed to create an instance of 'XXX' via deferred binding

2012-07-17 Thread Joseph Lust
What is the ' MyObject' object? You are passing it in from the Java side, but in JSNI JSO objects can only be created in JS (docshttps://developers.google.com/web-toolkit/doc/latest/DevGuideCodingBasicsJSNI#sharing ). Is ' MyObject' a JSO Overlay? Sincerely, Joseph -- You received this

Re: Cannot compile from command line

2012-07-17 Thread Joseph Lust
Can you supply the commandline argument you're using to launch the GWT compile from in the batch file? Just a wild guess, since you've redacted your path, but on my GWT projects the argument passed in looks something like this: com.lustforge.testbed.TestBed * * Perhaps you need:

Re: Hi, cakephp and GWT

2012-07-17 Thread Joseph Lust
CakePHP: PHP server side website framework. Interpreted at runtime. GWT: Java client/server side toolkit for RIA's. Compiled as war file. Try building with their sample projects to learn more. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups

When one has the option to use XML or JSON to communicate with JS libraries, which one would be better?

2012-07-17 Thread MAQ
Hi, I hope the question is clear, I'm a total GWT newbie. My project requires the use of some of Google's APIs. Two main solutions are provided one for XML and another for JSON (gdata-java-client and google-api-java-client). Which one would be more suitable (easier, more compatible etc.)? Or

Re: Setting Locale language dynamically initially

2012-07-17 Thread Joseph Lust
Thomas, The Groups page source is a fun read. Question for you, is there a certain compiler flag that can be used to inline the CSS/JS (bootstraping) into the page like is done on Groups? The CSS adds to the load time, but if it's small enough, must be a win in the long run. Inlining the

Re: Setting Locale language dynamically initially

2012-07-17 Thread Joseph Lust
Thomas, The Groups page source is a fun read. Question for you, is there a certain compiler flag that can be used to inline the CSS/JS (bootstraping - I see the code in there for injecting script tags) into the page like is done on Groups? The CSS adds to the load time, but if it's small

Re: RequestBuilder and Browser same-origin-policy

2012-07-17 Thread Joseph Lust
If you have the flexibility to use GET rather than POST over JSON, the JSONPRequestBuilder http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/jsonp/client/JsonpRequestBuilder.htmlis a nice solution to SOP without any proxies. You said you were connecting to a 3rd party

Re: DevMode for Firefox 14

2012-07-17 Thread David Guo
Hi Alan, Too bad to hear this news. Hope someone can continue to work on this devmode. On Wednesday, July 18, 2012 8:08:06 AM UTC+8, Alan Leung wrote: While I am technically no longer on the team, I got curious and started looking at the FF14 changes. There were some slight changes

GWT 2.5-RC1 feature UiRenderer doesnt work as expected.

2012-07-17 Thread Vasu
I tried to create a sample by using UiRenderer. But Showing null values as result. And as the UiRenderer code implementation is generated I am not even able to debug it. Following is the sample I tried. Person.java

GWT 2.5-rc1 feature uirender is not working as expected.

2012-07-17 Thread Vasu
I tried to create a sample by using UiRenderer. But Showing null values as result. And as the UiRenderer code implementation is generated I am not even able to debug it. Following is the sample I tried. Person.java

Re: When one has the option to use XML or JSON to communicate with JS libraries, which one would be better?

2012-07-17 Thread Robert W
I don't understant in what context you use solution word but generally json is standard for api use, with gwt overlays mechanism it easy to use in java typing model. On Wednesday, July 18, 2012 4:52:32 AM UTC+2, MAQ wrote: Hi, I hope the question is clear, I'm a total GWT newbie. My project

Re: When one has the option to use XML or JSON to communicate with JS libraries, which one would be better?

2012-07-17 Thread MAQ
Sorry, I meant 2 options provided by Google APIs. On Wednesday, July 18, 2012 2:50:51 PM UTC+10, Robert W wrote: I don't understant in what context you use solution word but generally json is standard for api use, with gwt overlays mechanism it easy to use in java typing model. On

Re: DevMode for Firefox 14

2012-07-17 Thread Dennis Haupt
maybe we should all vote somewhere to make jetbrains/the eclipse guys support source maps in their javascript debuggers asap? seems like a better option to me than maintaining an unmaintained plugin in the long run Am 18.07.2012 05:30, schrieb David Guo: Hi Alan, Too bad to hear this

Re: DevMode for Firefox 14

2012-07-17 Thread Juan Pablo Gardella
Thanks Alan again! I hope if you can build to XP too. 2012/7/18 David Guo angel243...@gmail.com Hi Alan, Too bad to hear this news. Hope someone can continue to work on this devmode. On Wednesday, July 18, 2012 8:08:06 AM UTC+8, Alan Leung wrote: While I am technically no longer on

[gwt-contrib] wrong error message on ResizeComposite

2012-07-17 Thread Duilio Protti
Hi, A few days ago I submitted a patch for this issue, that was already reported on 2010: http://code.google.com/p/google-web-toolkit/issues/detail?id=4534 but is still not fixed. My patch is at: http://gwt-code-reviews.appspot.com/1767805/ However, I'm not sure who is the most appropriate

[gwt-contrib] Re: @RequestFor should support interfaces, Fix issue 7509 (issue1764804)

2012-07-17 Thread manuel . carrasco . m
http://gwt-code-reviews.appspot.com/1764804/diff/9007/user/src/com/google/web/bindery/requestfactory/server/ResolverServiceLayer.java File user/src/com/google/web/bindery/requestfactory/server/ResolverServiceLayer.java (right):

[gwt-contrib] Re: @RequestFor should support interfaces, Fix issue 7509 (issue1764804)

2012-07-17 Thread manuel . carrasco . m
http://gwt-code-reviews.appspot.com/1764804/diff/9007/user/test/com/google/web/bindery/requestfactory/gwt/client/ProxyForInterfacesTest.java File user/test/com/google/web/bindery/requestfactory/gwt/client/ProxyForInterfacesTest.java (right):

[gwt-contrib] Re: Allowing users to hit enter when focused on table header cell to sort a sortable column. Also ma... (issue1765804)

2012-07-17 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1765804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added support for validation group inheritance. (issue1777803)

2012-07-17 Thread idol
http://gwt-code-reviews.appspot.com/1777803/diff/1/user/src/com/google/gwt/validation/client/impl/AbstractGwtSpecificValidator.java File user/src/com/google/gwt/validation/client/impl/AbstractGwtSpecificValidator.java (right):

[gwt-contrib] Re: Added support for validation group inheritance. (issue1777803)

2012-07-17 Thread nchalko
Let me know when you are ready for a new rieview http://gwt-code-reviews.appspot.com/1777803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors