Re: combobox - combination of list- and suggestion box

2011-04-26 Thread tanteanni
thx, so the look comes from ListBox (including the button?)? (besides - there is no listbox in your code!) but what is the image bundle you use for? Or to ask the other way around: you took an suggestion box and placed it together with FocusPanel iconWrapper in a horizontal panel?! How to get the

JRE Test for Activities and Places

2011-04-26 Thread roge.delgado
Recently I was reading about the new Activities and Places framework that comes with the 2.1 version of GWT and after breaking my head trying to understand what's going on with this, a question appeard in my head. According with the official documentation about Activities and Places, this feature

Re: TDD in Gwt

2011-04-26 Thread Piotr Kosmowski
Thank you very much for the presentation. We are starting with GWT a bigger project and we are going to use TDD. We saw best practices from Google IO but we are missing some good examples. The only difference is that we are planning to use MVP4g in stead of native GWT MVP. I hope it won't

Re: VerticalPanel with Celltable cell.

2011-04-26 Thread Deepak Singh
You can create an UIBinder for the 2nd column and use its object to render it as a celltable column. Regards Deepak On Tue, Apr 26, 2011 at 10:04 AM, ALB-PSP-DV1 albpsp...@gmail.com wrote: I have a requirement to display a celltable in the below manner __ | S.no |

Re: Can i access AppEngine Datastore(Using JDO) from GWT client coding.....

2011-04-26 Thread dominic jansen
GWT provides a RPC mechanism based on Java Servlets to provide access to server side resources like JDOs. Take a look at the Dev Guide and of course at the Tutorial http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideServerCommunication.html

Re: Debugging Maven Project in Eclipse ( Tutorial )

2011-04-26 Thread Metronome Basic
That was the solution for me Remote Fava Applivation and gwt:debug I used this link as an help for configuration thanks to all that have tried to help ( others solution could have been successfull , this one seemed easier to me ) Patrick - Original Message - From: Hilco Wijbenga

Re: Parsing Javascriptobject

2011-04-26 Thread khiem nguyen
have a look at jsni On Tue, Apr 26, 2011 at 5:57 AM, riyaz ahmed sunez.ri...@gmail.com wrote: Hi, While querying a webservice, i have recieved a gwt.javascriptobject in reponse i need to convert it into string and parse it to retrieve the data, Any idea how to do this. Thanks for reading

Re: Querying webservice which is on another server hosted on appengine

2011-04-26 Thread Thomas Broyer
That tutorial is outdated: there's been a JsonpRequestBuilder in GWT for a few versions now. -- 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 from this

How to show multiple PopupPanel on the UI?

2011-04-26 Thread Sunit Katkar
I have two buttons on my UI. When each is clicked I need to show a popup which is a subclass of the PopupPanel class The condition is such that if Button A is clicked then show Popup A. This popup has autohide=false, and it stays visible. Next, when Button B is clicked then show Popup B. This

Re: UIBinder and Dreamweaver

2011-04-26 Thread dmen
I have worked on both ends, building my own full blown apps and beautifying other peoples' apps. IMO, even with UiBinder markup, it is *very difficult* for designers with non-java knowledge to work with GWT. The best solution is to let them work with their own tools, e.g. Photoshop, Dreamweaver,

Reusable CSS inside CssResouce ClientBundle

2011-04-26 Thread Raphael André Bauer
Hi, we are using CSS Resources and ClientBundles for some months now. And - summing up - it's a really nice experience so far! However, as our CSS Resources are growing bigger and bigger we would like to have the ability to reuse some css code. One example is the definition of gradients. There

Re: Debug mode becomes very slow after 3rd Refresh of the page

2011-04-26 Thread Jiunarayan
I use firefox3.6.11. What could be the reason of getting slow? Or is there any way I can clean manually before refreshing the page. On Apr 25, 10:25 pm, Tomi B. tomi.blinni...@bliny.net wrote: Jiunarayan, What browser are you using? I've noticed similar issues, but mostly with Chrome. You

Re: UIBinder and Dreamweaver

2011-04-26 Thread A. Stevko
Unfortunately the seemingly static portions like FAQ, help, and news have different life cycles than the dynamic portions. Most shops are used to having designers rather than coders do the lifting here. Another place where designers are used to having a free hand is the css. Has anyone had

Re: StackPanel

2011-04-26 Thread Ani
Hi Carlos, Thank you for your answer but it's still not what I want :( Because I need the panel to act like a StackPanel (I mean, I need them to expand and close, like a StackPanel does), but in a way that if i want to have two items open, i could. With the aproach you're suggesting me, I would

Re: Adding image to a cell of CellTree

2011-04-26 Thread lamre
Hi, any idea of how to do this. Thanks. -- 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 from this group, send email to

Re: Problem with complex object tree and request factory - two issues

2011-04-26 Thread Marcin Makowski
On Apr 26, 1:08 am, Thomas Broyer t.bro...@gmail.com wrote: What's validated is the Product object. When Product#findProduct loads the product, does it also load the Group list? Group is loaded. Double, if you add following lines ProductMarginRequest request =

Aw: Re: StackPanel

2011-04-26 Thread Jens
Maybe you want to create a custom composite that wraps a ScrollPanel. Then add a FlowPanel or something to the ScrollPanel and add DisclosurePanels to that FlowPanel and arrange them vertically and style them with css. That way you would have something like the side menu in

How to persist child lists with an entity proxy using the Editor framework?

2011-04-26 Thread Christien Lomax
I have an object a that has a number of fields. One of those fields is a list of object B. In My editor, I can create,edit save, etc A, however even though the list of B is proxied, it is never persisted (it gets lost between the submit, and the service). Are there any examples available of

Re: Problem with complex object tree and request factory - two issues

2011-04-26 Thread Thomas Broyer
What I meant is that, to me, it's unrelated to RequestFactory proper, and at least totally a server thing (it doesn't matter what your ProductProxy looks like, it's what the Product looks like on the server side that matters, because only the Product/ProductProxy EntityProxyId will go over the

Re: Floating a GWT-built page above an existing conventional page

2011-04-26 Thread jhulford
See the PopupPanel or DialogBox class...that should allow you to do exactly what you want. In GWT terms your standard page will be acting as the host page for your GWT popup stuff you plan on displaying. Your use case fits in with all the tutorials of how to get up an going in GWT. You're just

Re: TDD in Gwt

2011-04-26 Thread Tonte Pouncil
Are any of you planning to use maven as your build tool? Thanks. Tonté From: Piotr Kosmowski kospi...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Tue, April 26, 2011 2:09:57 AM Subject: Re: TDD in Gwt Thank you very much for

Re: using SuggestBox with special Oracle and Suggestion - how to keep view humble

2011-04-26 Thread Ben Imp
Most of the GWT widgets have predefined interfaces that will work just fine. HasValue, HasText, HasClickHandlers, etc. I rarely bother to extend these. Ideally, you wont need to generate too many of these extra interfaces. I think the only additional interface I have created is

Re: I need 2 Google IO tickets

2011-04-26 Thread David Chandler
Hi István, Were you able to obtain an I/O ticket? Are you still planning to be in SFO May 10-11? I'm thinking of organizing a GWT get-together off campus so others could attend. Thanks, /dmc On Fri, Feb 11, 2011 at 12:03 PM, Jeff Larsen larse...@gmail.com wrote: I'd also be interested in a

Re: I need 2 Google IO tickets

2011-04-26 Thread Christian Goudreau
I'm in ! Cheers, On Tue, Apr 26, 2011 at 11:17 AM, David Chandler drfibona...@google.comwrote: Hi István, Were you able to obtain an I/O ticket? Are you still planning to be in SFO May 10-11? I'm thinking of organizing a GWT get-together off campus so others could attend. Thanks, /dmc

Re: I need 2 Google IO tickets

2011-04-26 Thread nino ekambi
Wish i could be there :( 2011/4/26 Christian Goudreau goudreau.christ...@gmail.com I'm in ! Cheers, On Tue, Apr 26, 2011 at 11:17 AM, David Chandler drfibona...@google.comwrote: Hi István, Were you able to obtain an I/O ticket? Are you still planning to be in SFO May 10-11? I'm

AutoBean deserialization facing problem with EntityProxyIdUserProxy stableId()

2011-04-26 Thread Andy
Hi, I am trying to serialize and deserialize to and from json using AutoBean as per the link http://code.google.com/p/google-web-toolkit/wiki/AutoBean I have the following classes - @ProxyFor(User.class)

Re: I need 2 Google IO tickets

2011-04-26 Thread István Szoboszlai
Hello David, We don't have the tickets yet, but are constantly trying to get two on ebay for a fair price. We are really interested in the get-together. We will be in SF from may 6th to may 28th. Do you want to do the event on May 10-11 or another day(s) would also be good. Meanwhile the IneForm

Re: I need 2 Google IO tickets

2011-04-26 Thread nino ekambi
IneForm project ? :) 2011/4/26 István Szoboszlai mrsz...@gmail.com Hello David, We don't have the tickets yet, but are constantly trying to get two on ebay for a fair price. We are really interested in the get-together. We will be in SF from may 6th to may 28th. Do you want to do the event

GWT + Tomcat + MySQL: How to set up a development environment

2011-04-26 Thread Ani
Hi there, I am about to create a web application using GWT + MySQL. My understanding is that I need to set up an external server (Tomcat) in order to use a MySQL back-end. What's the best way of doing this: 1. Create a Tomcat - Web Dynamic Project and get GWT up and running. 2. Create a Google -

Call Webservice on another server using GWT

2011-04-26 Thread abilash kp
How can we call webservice on another server using GWT ? I use RequestBuilder but it cannot send request to webserver. -- 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.

class not found after create a war

2011-04-26 Thread jako
Hi all, which is the correct sequence of goal for build a war from my gwt project? I compile my application inside eclipse and then run mvn compile war:war but when I deploy the war I get an error of type gwt needs to be ricompiled. what can be causing this error? thanks J -- You received

Re: AutoBean deserialization facing problem with EntityProxyIdUserProxy stableId()

2011-04-26 Thread Thomas Broyer
On Tuesday, April 26, 2011 5:42:11 PM UTC+2, Andy wrote: Hi, I am trying to serialize and deserialize to and from json using AutoBean as per the link http://code.google.com/p/google-web-toolkit/wiki/AutoBean I have the following classes

Re: I need 2 Google IO tickets

2011-04-26 Thread István Szoboszlai
IneForm is a soon to be opensourced project. It's main goal is to provide an easy way to present data in Tables and Forms. It uses a very simple reflection-extension and some descriptors to enable data-binding and dynamic rendering of tables and forms. And it constantly gets new features to help

Re: I need 2 Google IO tickets

2011-04-26 Thread nino ekambi
Sounds great. Do you have a demo somewhere to play with ? 2011/4/26 István Szoboszlai mrsz...@gmail.com IneForm is a soon to be opensourced project. It's main goal is to provide an easy way to present data in Tables and Forms. It uses a very simple reflection-extension and some descriptors to

Re: GWT + Tomcat + MySQL: How to set up a development environment

2011-04-26 Thread Juan Pablo Gardella
Hi, I am about to create a web application using GWT + MySQL. My understanding is that I need to set up an external server (Tomcat) in order to use a MySQL back-end No really, GWT is to build frontend. So you can do your backend in other language, for example PHP and communicate with GWT via

Re: How to show multiple PopupPanel on the UI?

2011-04-26 Thread Sunit Katkar
Anyone.. any idea? I tried using DialogBox class instead of PopupPanel but no sucess.. Thank you, Sunit Katkar On Tue, Apr 26, 2011 at 1:15 AM, Sunit Katkar sunitkat...@gmail.com wrote: I have two buttons on my UI. When each is clicked I need to show a popup which is a subclass of the

GWT app does not work in IE

2011-04-26 Thread Micha Roon
Hi, I have an app developed with GWT. In any browser except IE everything works fine. In IE 7, 8 or 9 it breaks. The link is https://dev.sertal.net/SertalVision/?locale=de#LoginPlace:test:sertal.ch In any Browser, the username is filled with test and the tenant with sertal.ch The solution I

PopupPanel greyed by setGlassEnabled

2011-04-26 Thread Micha Roon
I have a LoginView which is displayed in a PopupPanel on which I set setGlassEnabled(true) The issue is, that the content of the panel itself are grayed out too. Everything works, it is just gray. I would be thankful to know what I am doing wrong. There are two files involved: LoginView.ui.xml

Re: PopupPanel greyed by setGlassEnabled

2011-04-26 Thread SVR
You could try setting your own style (a different background etc) with: http://code.google.com/googleapps/appsscript/class_decoratedpopuppanel.html#setGlassStyleName On Tue, Apr 26, 2011 at 4:05 PM, Micha Roon micha.r...@gmail.com wrote: I have a LoginView which is displayed in a PopupPanel on

Re: Floating a GWT-built page above an existing conventional page

2011-04-26 Thread Richard
Please... how to get that PopupPanel instance to come to life if it's being called from (and meant to overlay) a page that has nothing to do with GWT??? Thanks so much. On Apr 26, 9:13 am, jhulford jhulf...@gmail.com wrote: See the PopupPanel or DialogBox class...that should allow you to do

Re: How to persist child lists with an entity proxy using the Editor framework?

2011-04-26 Thread Christien Lomax
I should note, that when stepping through the code, we can see the the list of B objects is indeed part of the proxy, but sometime after the request the values are lost. We get a Violation error, as the name field in B is now null, instead of teh value that was set. Does anyone have a clue

Warning while loading images from local machine

2011-04-26 Thread Patssay
Why do I get this message when I am trying to load images from local machine in my GWT application? [WARN] 404 - GET /Images%5Cbirthday1.jpg (127.0.0.1) 1408 bytes Request headers Host: 127.0.0.1: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv: 1.9.2.16)

Re: Warning while loading images from local machine

2011-04-26 Thread Alan Chaney
Well, 404 is NOT FOUND and as the image path is /Images%5Cbirthday1.jpg I suspect that you've urlencoded the path somewhere ( %5C === '\') which is a path separator in windows but not a valid path separator in HTTP. In other words, the URL for the image should be /Images/birthday1.jpg

Embedding the GWT application deployed on App Engine into Google Sites

2011-04-26 Thread Vikas Hazrati
Hi, I created a simple gadget using gwt which is hosted at the following location http://genpactpoc.appspot.com/ How do I include this app into google sites? I tried including it as a gadget with the following URL http://genpactpoc.appspot.com/docversion.html but that does not work. Do i have to

GWT Marquee

2011-04-26 Thread Dyos
Hi all, Well I am trying to get some scrolling text on my web page. The solution I found is to create a static empty marquee tag on the page and the access it with the DOM parser and set my text with setInnerHTML method. (The text I put in is dynamic and comes from the server) Anyway the text

GWT 2.2 - SingleSelectionModel and CellTable behavior issue

2011-04-26 Thread John Bates
Hi, all. I've encountered some odd behavior when using a SingleSelectionModel with a CellTable: when the user clicks a cell in the table, my onSelectionChange callback reports the correct selected object, but the CellTable widget appears to have all rows selected, as opposed to just the row

Re: Can't serialize a Hashset for an RPC call

2011-04-26 Thread macamat
If you are Google App Engine, then the problem could be that even if you saved a java.util.HashSetLong to the datastore, it will give you back a org.datanucleus.sco.backed.HashSetLong when you retrieve the parent object. It's allowed, because the sco backed version is a subclass of

Re: Warning while loading images from local machine

2011-04-26 Thread Patssay
Yes! Thanks ..Dont know why I changed it..had the same originally!! Also had copied images in the wrong folder it seems! Cheers, Sayali On Apr 26, 5:52 pm, Alan Chaney a...@mechnicality.com wrote: Well, 404 is NOT FOUND and as the image path is /Images%5Cbirthday1.jpg I suspect that

Re: GWT + Tomcat + MySQL: How to set up a development environment

2011-04-26 Thread Maurizio Moro
Il 26/04/2011 06:12, Ani ha scritto: Hi there, I am about to create a web application using GWT + MySQL. My understanding is that I need to set up an external server (Tomcat) in order to use a MySQL back-end. What's the best way of doing this: 1. Create a Tomcat - Web Dynamic Project and get

[gwt-contrib] Re: Re-architect how overrides are handled. (issue1422810)

2011-04-26 Thread t . broyer
Hey, it looks like it would fix this issue, cool! http://code.google.com/p/google-web-toolkit/issues/detail?id=4893 According to my tests at the time, it would enable pruning of most getClass() methods (at a minimum all those for abstract classes, which are always overridden in the concrete

[gwt-contrib] Re: Wrap low-priorty log calls with an 'if' test to avoid unnecessary calls (issue1425807)

2011-04-26 Thread jat
LGTM http://gwt-code-reviews.appspot.com/1425807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Re-architect how overrides are handled. (issue1422810)

2011-04-26 Thread Scott Blum
It actually does fix the abstract getClass() problem, I was noticing in the generated output. I'll mark my change as fixing this issue. On Tue, Apr 26, 2011 at 4:03 AM, t.bro...@gmail.com wrote: Hey, it looks like it would fix this issue, cool!

[gwt-contrib] Re: Re-architect how overrides are handled. (issue1422810)

2011-04-26 Thread scottb
http://gwt-code-reviews.appspot.com/1422810/diff/1/dev/core/src/com/google/gwt/dev/jjs/ast/JTypeOracle.java File dev/core/src/com/google/gwt/dev/jjs/ast/JTypeOracle.java (right):

[gwt-contrib] Adds cache of CollectClassData to make refresh faster. (issue1420809)

2011-04-26 Thread scheglov
Reviewers: zundel, Description: Adds cache of CollectClassData to make refresh faster. This gives about 10% performance gain on big projects. Please review this at http://gwt-code-reviews.appspot.com/1420809/ Affected files: M dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java

[gwt-contrib] Allow enum ordinalization to work correctly for enum classes with no values (i.e. empty enums). (issue1423809)

2011-04-26 Thread jbrosenberg
Reviewers: scottb, Description: Allow enum ordinalization to work correctly for enum classes with no values (i.e. empty enums). Please review this at http://gwt-code-reviews.appspot.com/1423809/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/impl/EnumOrdinalizer.java M

[gwt-contrib] Re: Adds cache of CollectClassData to make refresh faster. (issue1420809)

2011-04-26 Thread scottb
High-level, it seems like we might want to think about how to tie the lifecycle of the data to the lifecycle of the associated CompilationUnit/CompiledClass. Maybe this should actually be moved into a lazy-initialized transient field in CompiledClass instead of having to use a map. Also, now

[gwt-contrib] Re: Fix cast normalizer to properly deal with multidimensional JSO arrays. (issue1428803)

2011-04-26 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/1428803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introducing CustomScrollPanel, a subclass of ScrollPanel that lets users define their own scroll... (issue1427804)

2011-04-26 Thread jlabanca
committed as r10067 http://gwt-code-reviews.appspot.com/1427804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Allow enum ordinalization to work correctly for enum classes with no values (i.e. empty enums). (issue1423809)

2011-04-26 Thread scottb
LGTM w/ nits http://gwt-code-reviews.appspot.com/1423809/diff/1/dev/core/src/com/google/gwt/dev/jjs/impl/EnumOrdinalizer.java File dev/core/src/com/google/gwt/dev/jjs/impl/EnumOrdinalizer.java (right):

[gwt-contrib] [google-web-toolkit] r10068 committed - Cherry pick r10025 into gwt/releases/2.3

2011-04-26 Thread codesite-noreply
Revision: 10068 Author: zun...@google.com Date: Tue Apr 19 09:50:32 2011 Log: Cherry pick r10025 into gwt/releases/2.3 http://code.google.com/p/google-web-toolkit/source/detail?r=10068 Modified: /releases/2.3/dev/core/src/com/google/gwt/dev/cfg/ConditionWhenTypeAssignableTo.java

[gwt-contrib] [google-web-toolkit] r10069 committed - Cherry picking r10017 into releases/2.3m1 for public issue...

2011-04-26 Thread codesite-noreply
Revision: 10069 Author: gwt.mirror...@gmail.com Date: Tue Apr 26 09:33:54 2011 Log: Cherry picking r10017 into releases/2.3m1 for public issue http://gwt-code-reviews.appspot.com/1423801/ http://code.google.com/p/google-web-toolkit/source/detail?r=10069 Modified:

[gwt-contrib] Re: Introducing ServiceHelper, a inner class of RemoteServiceProxy that (issue1423808)

2011-04-26 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/1423808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Autoformats a few files before patch (issue1425809)

2011-04-26 Thread zundel
Reviewers: scottb, jbrosenberg, Description: Autoformats a few files before patch Please review this at http://gwt-code-reviews.appspot.com/1425809/ Affected files: M dev/core/src/com/google/gwt/dev/javac/CompilationProblemReporter.java M

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rjrjr
http://gwt-code-reviews.appspot.com/1426805/diff/1/user/src/com/google/gwt/uibinder/elementparsers/AttachableHTMLPanelParser.java File user/src/com/google/gwt/uibinder/elementparsers/AttachableHTMLPanelParser.java (right):

[gwt-contrib] Re: Autoformats a few files before patch (issue1425809)

2011-04-26 Thread jbrosenberg
LGTM http://gwt-code-reviews.appspot.com/1425809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Phase 1 of GWT Dashboard. This includes an interface in gwt-dev for posting to a dashboard (defa... (issue1427807)

2011-04-26 Thread jhumphries
Reviewers: tobyr, Description: Phase 1 of GWT Dashboard. This includes an interface in gwt-dev for posting to a dashboard (default implementation is a no-op). Added calls to this interface in a couple of places. Created factory class that can provide the no-op implementation or a real

[gwt-contrib] Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rdcastro
Reviewers: rjrjr, hermes, Description: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. Please review this at http://gwt-code-reviews.appspot.com/1426805/ Affected files: A user/src/com/google/gwt/uibinder/elementparsers/AttachableHTMLPanelParser.java

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rdcastro
Thanks, guys. Another look? http://gwt-code-reviews.appspot.com/1426805/diff/1/user/src/com/google/gwt/uibinder/elementparsers/AttachableHTMLPanelParser.java File user/src/com/google/gwt/uibinder/elementparsers/AttachableHTMLPanelParser.java (right):

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rdcastro
http://gwt-code-reviews.appspot.com/1426805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10071 committed - Introducing ServiceHelper, a inner class of RemoteServiceProxy that...

2011-04-26 Thread codesite-noreply
Revision: 10071 Author: gwt.mirror...@gmail.com Date: Tue Apr 26 10:46:07 2011 Log: Introducing ServiceHelper, a inner class of RemoteServiceProxy that makes ProxyCreator generates less code. Review at http://gwt-code-reviews.appspot.com/1423808 Review by: robertvaw...@google.com

[gwt-contrib] Re: Adds cache of CollectClassData to make refresh faster. (issue1420809)

2011-04-26 Thread scheglov
http://gwt-code-reviews.appspot.com/1420809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread Rafael Castro
Please hold reviewing this for a sec, I'm fixing a compile error I introduced. On Tue, Apr 26, 2011 at 2:39 PM, rdcas...@google.com wrote: Thanks, guys. Another look?

[gwt-contrib] Re: Adds cache of CollectClassData to make refresh faster. (issue1420809)

2011-04-26 Thread scheglov
Actually after initial cache filling all these units are used. I see preparing new TypeData only for changed units, when I modify them and hit Refresh in DevMode browser. I've added lazy TypeData into CompiledClass and filling TypeData information instead of cache. I'm not sure however if adding

[gwt-contrib] Fixing a bug with ScrollImplTrident where it fires a synthetic scroll event even if the browser ... (issue1426806)

2011-04-26 Thread jlabanca
Reviewers: rchandia, Description: Fixing a bug with ScrollImplTrident where it fires a synthetic scroll event even if the browser fires a native scroll event when an element is resized. We now delay firing the synthetic scroll event until the browser has had a chance to fire a native scroll

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rjrjr
LGTM with yet another TODO Also, the very next patch will need to be an integration test. http://gwt-code-reviews.appspot.com/1426805/diff/6001/user/src/com/google/gwt/user/client/ui/AttachableHTMLPanel.java File user/src/com/google/gwt/user/client/ui/AttachableHTMLPanel.java (right):

[gwt-contrib] [google-web-toolkit] r10072 committed - Autoformats a few files before patch...

2011-04-26 Thread codesite-noreply
Revision: 10072 Author: gwt.mirror...@gmail.com Date: Tue Apr 26 10:55:15 2011 Log: Autoformats a few files before patch Review at http://gwt-code-reviews.appspot.com/1425809 http://code.google.com/p/google-web-toolkit/source/detail?r=10072 Modified:

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rdcastro
http://gwt-code-reviews.appspot.com/1426805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Additional infrastructure for generating source code outside of a (issue1421805)

2011-04-26 Thread jat
Reviewers: unnurg, Description: Additional infrastructure for generating source code outside of a GWT generator. Review by: unn...@google.com Please review this at http://gwt-code-reviews.appspot.com/1421805/ Affected files: A user/src/com/google/gwt/codegen/rebind/GwtCodeGenContext.java

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rdcastro
http://gwt-code-reviews.appspot.com/1426805/diff/6001/user/src/com/google/gwt/user/client/ui/AttachableHTMLPanel.java File user/src/com/google/gwt/user/client/ui/AttachableHTMLPanel.java (right):

[gwt-contrib] This fix a bug in WidgetPlaceholderInterpreter (missing convertField) (issue1420810)

2011-04-26 Thread hermes
Reviewers: rdcastro, rjrjr, Description: This fix a bug in WidgetPlaceholderInterpreter (missing convertField) and create a new FieldWriterType to substitute the ugly setBuildPrecedence(). It also make LazyDomElement used in more places. This saved a few bytes. Please review this at

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rdcastro
http://gwt-code-reviews.appspot.com/1426805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: EnumOrdinalizer cleanup better interop. (issue1426804)

2011-04-26 Thread jbrosenberg
In looking at EnumOrdinalizer now, I think there is some confusion wrt the 2nd and 3rd visitors (ReplaceEnumTypesWithInteger ReplaceOrdinalFieldAndMethodRefsWithOrdinal). It seems that RETWI, which extends TypeRemapper, is already doing some of the assignments (perhaps not completely

[gwt-contrib] [google-web-toolkit] r10074 committed - create a tag for the gwt 2.3rc1 release

2011-04-26 Thread codesite-noreply
Revision: 10074 Author: mrruss...@google.com Date: Tue Apr 26 11:49:09 2011 Log: create a tag for the gwt 2.3rc1 release http://code.google.com/p/google-web-toolkit/source/detail?r=10074 Added: /tags/2.3.0-rc1 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduce the Attachable interface, and add support to UiBinder's HTMLPanel parser. (issue1426805)

2011-04-26 Thread rjrjr
LGTM++ http://gwt-code-reviews.appspot.com/1426805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: This fix a bug in WidgetPlaceholderInterpreter (missing convertField) (issue1420810)

2011-04-26 Thread rjrjr
LGTM You and Rafa are on a collision course around the field precedence thing. Let the race begin! http://gwt-code-reviews.appspot.com/1420810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10075 committed - Fix build break introduced by previous change

2011-04-26 Thread codesite-noreply
Revision: 10075 Author: gwt.mirror...@gmail.com Date: Tue Apr 26 12:08:36 2011 Log: Fix build break introduced by previous change http://code.google.com/p/google-web-toolkit/source/detail?r=10075 Modified: /trunk/dev/core/src/com/google/gwt/dev/javac/CompilationStateBuilder.java

[gwt-contrib] Re: EnumOrdinalizer cleanup better interop. (issue1426804)

2011-04-26 Thread jbrosenberg
Scott, would you mind, for my own edification, outlining how this improves the valid state of the AST after EnumOrdinalizer runs? Thanks. http://gwt-code-reviews.appspot.com/1426804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10076 committed - Fixing a bug with ScrollImplTrident where it fires a synthetic scroll ...

2011-04-26 Thread codesite-noreply
Revision: 10076 Author: jlaba...@google.com Date: Tue Apr 26 08:38:21 2011 Log: Fixing a bug with ScrollImplTrident where it fires a synthetic scroll event even if the browser fires a native scroll event when an element is resized. We now delay firing the synthetic scroll event

[gwt-contrib] Re: Fixing a bug with ScrollImplTrident where it fires a synthetic scroll event even if the browser ... (issue1426806)

2011-04-26 Thread jlabanca
committed as r10076 http://gwt-code-reviews.appspot.com/1426806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing a bug with ScrollImplTrident where it fires a synthetic scroll event even if the browser ... (issue1426806)

2011-04-26 Thread rchandia
LGTM On 2011/04/26 19:20:10, jlabanca wrote: committed as r10076 http://gwt-code-reviews.appspot.com/1426806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10077 committed - Include all needed javax.validation classes for the api checker....

2011-04-26 Thread codesite-noreply
Revision: 10077 Author: ncha...@google.com Date: Tue Apr 26 09:52:21 2011 Log: Include all needed javax.validation classes for the api checker. Review at http://gwt-code-reviews.appspot.com/1425802 Review by: rchan...@google.com

[gwt-contrib] Adding drag and drop support to the mobile web app. The desktop TaskEditView now has a list of t... (issue1420811)

2011-04-26 Thread jlabanca
Reviewers: rice, Description: Adding drag and drop support to the mobile web app. The desktop TaskEditView now has a list of templates. Users can drag a template over the edit form to populate the fields. I found a few holes in the drag and drop API, which are also fixed in this patch. I added

[gwt-contrib] Re: EnumOrdinalizer cleanup better interop. (issue1426804)

2011-04-26 Thread Scott Blum
Based on your comments, I'm going to rework the patch. You're right, I was totally confused about the difference between ReplaceEnumTypesWithInteger ReplaceOrdinalFieldAndMethodRefsWithOrdinal. I think the JField / JFieldRef replacements in the former are what threw me. I'll rework the patch.

[gwt-contrib] [google-web-toolkit] r10078 committed - new directory for 2.3 javadocs

2011-04-26 Thread codesite-noreply
Revision: 10078 Author: mrruss...@google.com Date: Tue Apr 26 13:27:11 2011 Log: new directory for 2.3 javadocs http://code.google.com/p/google-web-toolkit/source/detail?r=10078 Added: /javadoc/2.3 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Adds some diagnostics to an exception thrown in CompiledClass. (issue1425810)

2011-04-26 Thread zundel
Reviewers: scottb, jbrosenberg, tobyr, Description: Adds some diagnostics to an exception thrown in CompiledClass. Please review this at http://gwt-code-reviews.appspot.com/1425810/ Affected files: M dev/core/src/com/google/gwt/dev/javac/CompilationProblemReporter.java M

[gwt-contrib] Re: Adds some diagnostics to an exception thrown in CompiledClass. (issue1425810)

2011-04-26 Thread zundel
This patch deserves some explanation: I saw a case where the ClassFormatException that was formally caught in CompiledClass was emitted from the compiler. Adding some missing source to the source path fixed the problem. I was unable to reproduce the problem in a small example. I'm proposing

[gwt-contrib] Re: Adds cache of CollectClassData to make refresh faster. (issue1420809)

2011-04-26 Thread zundel
http://gwt-code-reviews.appspot.com/1420809/diff/5001/dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java File dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java (right):

[gwt-contrib] Re: Adding drag and drop support to the mobile web app. The desktop TaskEditView now has a list of t... (issue1420811)

2011-04-26 Thread Jeff Larsen
Drag n Drop doesn't work in ie8 (expected). Perhaps use deferred binding to get rid of the templates portion for all versions of ie9. Otherwise those templates are pretty useless. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10079 committed - copy the javadocs

2011-04-26 Thread codesite-noreply
Revision: 10079 Author: mrruss...@google.com Date: Tue Apr 26 13:57:14 2011 Log: copy the javadocs http://code.google.com/p/google-web-toolkit/source/detail?r=10079 Added: /javadoc/2.3/2.2 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds cache of CollectClassData to make refresh faster. (issue1420809)

2011-04-26 Thread scottb
http://gwt-code-reviews.appspot.com/1420809/diff/5001/dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java File dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java (right):

  1   2   >