native implementation of com.google.gwt.core.client.JavaScriptObject

2011-08-26 Thread Raja Shekhar
Hi, Could anyone please provide me the location where i can the implementation of com.google.gwt.core.client.JavaScriptObject in GWT? Or I would like to create MOCK implementation for com.google.gwt.core.client.JavaScriptObject, please guide me on how to do this? -- Thanks, Raja -- You

Re: GWT Developer Plugin for Firefox 6

2011-08-26 Thread Olivier Hoareau
I second that! On 25 août, 16:48, Tony Rah xsegr...@gmail.com wrote: GWT Team, Perhaps it would help if you posted a white paper on how to build the pluggin and then the community could keep up with the new release schedule until the official ones are available. On Aug 25, 7:07 am, JB

Re: Code Split

2011-08-26 Thread Raphaël Brugier
Hi, To get information on how your code is split you can use the soyc (story of your compile) flag, see: http://code.google.com/webtoolkit/doc/latest/DevGuideCompileReport.html To get information on when your splitted code is loaded, use the speed tracer plugin for chrome:

Re: Inherited exceptions in GWT-RPC

2011-08-26 Thread Paul Robinson
You shouldn't need to do anything. It should work as you thought. That is, you can throw any subclass of the declared exception(s). Is there something about BException and CException that stops them from being gwt-serializable? Alternatively, maybe it's because AException extends

Re: native implementation of com.google.gwt.core.client.JavaScriptObject

2011-08-26 Thread Alain Ekambi
Ctrl + Shift + T (Windows, Eclipse) Then type JavaScriptObject 2011/8/26 Raja Shekhar grsvarma...@gmail.com Hi, Could anyone please provide me the location where i can the implementation of com.google.gwt.core.client.JavaScriptObject in GWT? Or I would like to create MOCK implementation

Aw: Code Split

2011-08-26 Thread Jens
Have you compiled your app and used Firebug to see what is loaded? If not do so, because in dev mode code behind a split point is not loaded asynchronously via a ajax call. This only happens when you have compiled your app and don't use dev mode. -- J. -- You received this message because

Re: GWT Developer Plugin for Firefox 6

2011-08-26 Thread Thomas Broyer
Is anything more than http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/README.txt and http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/README.txt needed? -- You received this message because you are subscribed to the Google Groups Google

Application Cache Events

2011-08-26 Thread StrongSteve
Hello, I am currently experimenting with the application cache. After creating a appcache.manifests for the different browser versions I am wondering if there is a way to listen for the application cache events inside GWT? Using Chrome Dev Tools you see a lot what is going on with the

CellTable needs overflow set

2011-08-26 Thread Al Forbes
Hi, I have a pretty standard CellTable setup with the center of a DockLayoutPanel, but the table is never visible. I can fix it by setting if set the DockLayout properties overflowX and overflowY to visible. The sample (com/google/gwt/sample/dynatablerf/client/widgets/SummaryWidget.java) shipped

Aw: Application Cache Events

2011-08-26 Thread Jens
To see what variables/methods/events are available on the ApplicationCache take a look at: http://www.w3.org/TR/html5/offline.html#applicationcache A small example how to use it in native JavaScript can be found here: http://www.html5rocks.com/en/tutorials/appcache/beginner/ So you should be

Re: Aw: Application Cache Events

2011-08-26 Thread Thomas Broyer
See also http://code.google.com/p/gwt-mobile-webkit/wiki/AppCacheDesign and http://code.google.com/p/gwt-mobile-webkit/source/browse/trunk/gwt-mobile-webkit/applicationcache/ (work in progress, according to the project's home page, though it hasn't changed much for some time:

Re: format dates in specific timezone

2011-08-26 Thread mariyan nenchev
I don't want to make mappings manually. It's very funny that such thing can't be done with gwt. On Thu, Aug 25, 2011 at 11:05 PM, Sydney sydney.henr...@gmail.com wrote: If you want to use GMT+1 timezone style I guess you need to do some kind of mapping. -- You received this message because

Re: Custom internationalization with gwt

2011-08-26 Thread mariyan nenchev
Any help with this, please? On Thu, Aug 25, 2011 at 4:19 PM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, I want to make custom internationalization for my gwt app. What does this means? Imagine that my app must be internationalized for men and women. (id=men, id=women). is it

Re: GWT + HttpServlets

2011-08-26 Thread Hareen Bejjanki
Hi Karim Duran I don't know any thing about GWT servlet. Could you please provide me an elaborated example for the same, and where can I get the plugins for it. On Thu, Aug 25, 2011 at 10:46 PM, karim duran karim.du...@gmail.com wrote: Hi Hareen, Could you be more precise. I don't understand

GWT-RPC Unable to access servlet in web application

2011-08-26 Thread vaibhav bhalke
Hi, I integrated my gwt module in to existing web application and deployed on jboss. when I trying to hit gwt_servlet then I am getting error message on failure method of asynccallback i.e. *The requested resource (/warFileName/GWTAPPS/myGwtModuleName/GWTServletName) is not available.* * * My

Re: Aw: Generic Entity Locator

2011-08-26 Thread Cem Ikta
Hi Jens, how do you write find Methode of your EntityLocator? Is my methode correct? * * @Override public *EntityBase* find(Class? extends EntityBase clazz, Long id) { * return ?* } Best regards. -- You received this message because you are subscribed to the Google Groups

Aw: Re: Aw: Generic Entity Locator

2011-08-26 Thread Jens
Should be fine. I just do return entitymanager.find(clazz, id). -- 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/-/_Hip41CPKpUJ. To post to

GWT bytecodes on Android platforms

2011-08-26 Thread freemonhuul
Hi. google friendlies. I have a thought about GWT and Android. I have developed some app on the GWT and Android. Now I am developing an app for android OS which should receive data from http server and doesn't have a web browser compatible. shortly can I use GWT's java bytecodes in my android

Re: GWT bytecodes on Android platforms

2011-08-26 Thread Magno Machado
You could do the communication through RequestFactory, which has a pure java client library that you can use on Android. On Fri, Aug 26, 2011 at 7:55 AM, freemonhuul freemonh...@gmail.com wrote: Hi. google friendlies. I have a thought about GWT and Android. I have developed some app on the

Re: Order of sub-editor setters in RequestFactoryEditorDriver

2011-08-26 Thread Thomas Broyer
If your code depends on call orders, then you'll have issues even without the Editor framework: as soon as you call a getter to retrieve a related proxy out of an edit()ed proxy, that other proxy will automatically be edit()ed too, so that you can write code like: MyProxy myProxy =

Re: gwt-earth sample - question

2011-08-26 Thread Nick
Ben ben.falchuk@... writes: I'm trying to learn and work with the gwt-earth project.. started with the sort of hello earth program available at: http://code.google.com/p/earth-api-samples/source/browse/#svn%2Ftrunk%2Fdemos%2Fgwt-earth%2Fsrc%2Fcom%2Fgoogle%253Fstate%253Dclosed While the

Handle OnClick of GWT SuggestBox ?

2011-08-26 Thread Santosh kumar
Hi, *onClick of the SuggestBox* i want to display some of the default suggestions. Some how i am managing to get response from the server. @Override public void onClick(ClickEvent event) { - - - - //

GWT + Facebook

2011-08-26 Thread Bruno Sandivilli
Hi, i want i esay and clean way to integrate GWT with Facebook. Any ideas? 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

Re: Google Plugin for Eclipse 3.4

2011-08-26 Thread myTrx
Hello! Same problem here. It seems that the download is defect. Look here: http://code.google.com/p/google-web-toolkit/issues/detail?id=6694 On 5 Aug., 22:06, JohnJ jhnjhn...@gmail.com wrote: I am having trouble installing the plugin for Eclipse3.4.  I have installed it in the past.  In

JFace with GWT for client apps

2011-08-26 Thread Avi Sengupta
Hi, Does GWT client side support JFace? I've looked at the uFace links but it seems like it is no longer being actively developed. Regards, Avi -- 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: Insane RPC Serialization Error.

2011-08-26 Thread Gianluigi
Thanks for all the answers.  Actually the insane part it's related that rpc It works PERFECTLY in hosted mode or in web dev plugin mode... the serialization of complex objects in RPC fails completely in web mode without dev plugin... The funny part is that I have found only this similar

GWT customization (CSS) by web designer

2011-08-26 Thread Otto Chrons
We are trying out GWT 2.3 for the first time to develop a web application for professional users (not consumers). What is the best way to enable a web designer to work on customizing the UI, especially CSS, without having him work through the full GWT compile/package scheme? Ideally we would just

Re: GWT Developer Plugin for Firefox 6

2011-08-26 Thread Chris Conroy
That's more or less it to build against existing source and plugin sdks. Upgrading to a new version is certainly more involved due to the repackaging of the original SDK, updating the makefile, manifest, and rdf install template in the easy case. In the hard case it involves dealing with breaking

Re: Application Behaving Differently On Glassfish

2011-08-26 Thread opn
Hey, can't help you with your specific problem, sorry. But have you ever tried the-noserver option? This way I'm developing with nearly the same setup than the productive machine has. I don't know if you mean that in your first post where you're saying that you can not get remote deployment

Re: Pros Cons for RequestFactory Vs GWT RPC mechanism

2011-08-26 Thread Brian Lough
That's a little misleading in that RequestFactory useage requires a considerable amount of scaffolding code. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT customization (CSS) by web designer

2011-08-26 Thread Paul Robinson
I have the home page of my app and some other resources generated on-the-fly by pulling the data out of the database. This lets you have user-defined CSS post-production. - Create a new servlet that extends HttpServlet to handle your dynamic resources - Override doGet() and intercept requests

Re: Pros Cons for RequestFactory Vs GWT RPC mechanism

2011-08-26 Thread Brian Lough
After digging into both, I'm moving towards GWTEventservice: http://code.google.com/p/gwteventservice/. RequestFactory seems best fitted to CRUD operations on specific model entities and does offer much under the covers in supporting those operations. Combined with UIBinder and Editors, it's

Re: Sending a value from a celltable to a view

2011-08-26 Thread Sandney Farias
For example you get the String *RootPlace:banco/123* I got the string and extract 123, but when I'll use it in the line * Datastore.query(banco).filter(banco.key.equal(key)).asSingle(); * the key have to be a object of *KEY* type and isn't possible cast a *String*type to a *Key* type.

Re: Pros Cons for RequestFactory Vs GWT RPC mechanism

2011-08-26 Thread Magno Machado
It was also a bit of a pain getting integrated with Spring and Guice, though I'm sure that pain will be alleviated as the releases progress. I don't know about Spring, but integrating RF and Guice is not that hard and works very well On Fri, Aug 26, 2011 at 12:40 PM, Brian Lough bklo...@gmail.com

GWT RPC with other server possible?

2011-08-26 Thread jernejk
Dear all, I am total noob in GWT and just need to develop a few concepts (urgently of course). I'd like to display data from a separate server in GWT app running on another server. I'm looking into GWT RPC and it looks as if it *might* work, but if I configure endpoit like this

gwt-earth - adding controls to the plugin?

2011-08-26 Thread veganjay
Does anyone know if it is possible to add controls to the Google Earth plugin? For a simple example, I'd like to create a GWT PushButton and add it to the window. For the 2D Google Maps, there is a method MapWidget.addControl(), but I don't see anything similar with the Google Earth plugin. And

Re: Using GWT Designer with UIBinder and Internaltionalization

2011-08-26 Thread Mike Dee
I'm having the same problem. The external strings button is missing when working with a uibinder XML file. On Jul 11, 10:55 am, Greg boavi...@gmail.com wrote: Hi, I'm trying to start a new application using the new UIBinder with help of GWT Designer. Moreover, the application needs to support

Re: Clojure on the back end / suggestions before I get started?

2011-08-26 Thread BST
https://groups.google.com/forum/#!forum/clojure I am guessing guys at this forum might give u a better idea of how to design. It is interesting to know about Clojure. Probably you also should explore if you can make it run on a server to service requests and you can use it with GWT RPC.. --

Re: How to do JUnit testing for a composite widget created using UIBinder?

2011-08-26 Thread Eric Metcalf
You want a GWT test: http://code.google.com/webtoolkit/doc/latest/DevGuideTesting.html On Aug 25, 2:18 pm, BM bhushan.ma...@gmail.com wrote: I have created a stand alone custom widget using GWT UIBinder with the help of GWT Designer. The two files which I have are :

Active tab on tab panel not being highlighted.

2011-08-26 Thread Rich
I have a GWT 2.3.0 application and when run in the debugger the active tab of a tab panel highlights when that tab is selected. However in the deployed application it does not highlight. Not sure what to look at. Any suggestions? (This behavior is the same across browsers.) -- You

Can't display wide HTML in Dialog

2011-08-26 Thread dhoffer
I'm starting with the sample GWT 2.3.0 app that just shows a dialog after making an RPC call, I've added more wide content to the VerticalPanel but it gets truncated, i.e. the right side of the dialog is missing...so is the Close button. Why can't I show wide content as HTML here? -- You

Re: GWT customization (CSS) by web designer

2011-08-26 Thread Michael Allan
A simple approach is to pull the designer's style sheet into the GWT page, just as you would into a static page. Here's an example: http://zelea.com/project/votorola/a/web/base/xf/default.html See the link element. See also the caveat in this style sheet, which is imported into the main sheet:

Re: GWT customization (CSS) by web designer

2011-08-26 Thread dreamer
Without any addition automation I follow this cycle. 1) Setup full development environment, start at app development mode (debug-run) 2) open the CSS file with gwt css editor. 3) make changes, save 3) in development tab - reload web server (two crossing arrows) 4) new css will be loaded, just

CellTable CPU 20%

2011-08-26 Thread myge...@yahoo.com
I'm sorry, I don’t speak English. Open link http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable I use Google chrome, IE9, IE6, Opera. fast repeat move mouse. cpu usage 20% why? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-26 Thread cromwellian
lgtm http://gwt-code-reviews.appspot.com/1532803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue 6193: Fix memory-leak in AutoBean VM implementation (issue1401802)

2011-08-26 Thread t . broyer
Please do not use this patch. The leak is fixed in trunk by http://code.google.com/p/google-web-toolkit/source/detail?r=10201 and http://code.google.com/p/google-web-toolkit/source/detail?r=10344 http://gwt-code-reviews.appspot.com/1401802/ --

[gwt-contrib] Re: Serialization of Final Fields in RPC (issue1380807)

2011-08-26 Thread stephen . haberman
Thanks. I'll look through and incorporate your changes. zhuyi, any updates on this? http://gwt-code-reviews.appspot.com/1380807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread stephen . haberman
Reviewers: scottb, Please review this at http://gwt-code-reviews.appspot.com/1529807/ Affected files: A user/super/com/google/gwt/emul/java/lang/NoSuchMethodException.java Index: user/super/com/google/gwt/emul/java/lang/NoSuchMethodException.java diff --git

[gwt-contrib] Re: Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread stephen . haberman
I know this seems odd, given GWT doesn't support reflection, but in the scala-library there are a few places that throw this exception even though it's not reflection-related. We can patch around that, but given that, in theory anyway, other users could use this exception for non-reflection

[gwt-contrib] Re: Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread jat
http://gwt-code-reviews.appspot.com/1529807/diff/1/user/super/com/google/gwt/emul/java/lang/NoSuchMethodException.java File user/super/com/google/gwt/emul/java/lang/NoSuchMethodException.java (right):

[gwt-contrib] Re: Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread stephen . haberman
http://gwt-code-reviews.appspot.com/1529807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread stephen . haberman
On 2011/08/26 16:19:51, jat wrote: The doc needs to very clearly say this will never be thrown by GWT Agreed; done. http://gwt-code-reviews.appspot.com/1529807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread stephen . haberman
http://gwt-code-reviews.appspot.com/1529807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add NoSuchMethodException to java.lang (issue1529807)

2011-08-26 Thread stephen . haberman
On 2011/08/26 17:10:50, scottb wrote: How about is not thrown present tense? No need to tie ourselves down for all of time. :) Hehe, fair enough. Done. http://gwt-code-reviews.appspot.com/1529807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] maven source jars

2011-08-26 Thread Stephen Haberman
David, could you send us (Stephen and me) your scripts so we could work together making this real? (if you're OK with this, Stephen) Definitely. Sounds cool to me. - Stephen -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding a new CellTableHeaderBuilder API, which allows custom headers and footers in CellTable. C... (issue1499808)

2011-08-26 Thread jlabanca
committed as r10581 A follow up change is coming to merge the latest CellTableBuilder changes into HeaderCreator. http://gwt-code-reviews.appspot.com/1499808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10583 committed - Integrate r10431 into GWT 2.4 branch....

2011-08-26 Thread codesite-noreply
Revision: 10583 Author: gwt.mirror...@gmail.com Date: Fri Aug 26 08:21:06 2011 Log: Integrate r10431 into GWT 2.4 branch. Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10583 Modified:

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-26 Thread Ray Ryan
r10584 On Thu Aug 25 23:08:59 GMT-700 2011, cromwell...@google.comgt wrote: lgtm http://gwt-code-reviews.appspot.com/1532803/http://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1532803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10584 committed - Make UmbrellaException a bit more convenient to read, and test it....

2011-08-26 Thread codesite-noreply
Revision: 10584 Author: rj...@google.com Date: Fri Aug 26 08:45:52 2011 Log: Make UmbrellaException a bit more convenient to read, and test it. Review at http://gwt-code-reviews.appspot.com/1532803 Review by: cromwell...@google.com

[gwt-contrib] Re: Firefox 6 DevMode Plugin (issue1523805)

2011-08-26 Thread conroy
On 2011/08/26 18:59:42, acleung wrote: On 2011/08/26 18:58:34, acleung wrote: Thanks! PTAL BTW, how do I go about verifying the universal binary is built correctly? Do I need to grab an older Mac or am I missing something very obvious? If you have an older mac, then that works.

[gwt-contrib] [google-web-toolkit] r10585 committed - Edited wiki page RequestFactoryInterfaceValidation through web user in...

2011-08-26 Thread codesite-noreply
Revision: 10585 Author: rj...@google.com Date: Fri Aug 26 12:09:28 2011 Log: Edited wiki page RequestFactoryInterfaceValidation through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=10585 Modified: /wiki/RequestFactoryInterfaceValidation.wiki

[gwt-contrib] Modifying DefaultHeaderCreator to support null sorting indicator images. Until a recent change,... (issue1533803)

2011-08-26 Thread jlabanca
Reviewers: eschoeffler, Description: Modifying DefaultHeaderCreator to support null sorting indicator images. Until a recent change, CellTable would not throw any errors if the sort indicators in the Resources returned null, as long as the CellTable was never sorted. However,

[gwt-contrib] Adding a test case that verifies CellTable works even if all image resources are null. Sort ico... (issue1534803)

2011-08-26 Thread jlabanca
Reviewers: eschoeffler, Description: Adding a test case that verifies CellTable works even if all image resources are null. Sort icons are only used if a column is sorted (sorting will cause an NPE). Background icons are used in the default styles, and are optional. The sorting icon is

[gwt-contrib] [google-web-toolkit] r10586 committed - Modifying DefaultHeaderCreator to support null sorting indicator image...

2011-08-26 Thread codesite-noreply
Revision: 10586 Author: jlaba...@google.com Date: Fri Aug 26 09:38:28 2011 Log: Modifying DefaultHeaderCreator to support null sorting indicator images. Until a recent change, CellTable would not throw any errors if the sort indicators in the Resources returned null, as long as

[gwt-contrib] Integrating Peng's recent API changes to CellTableBuilder into HeaderCreator. HeaderCreator now... (issue1533804)

2011-08-26 Thread jlabanca
Reviewers: skybrian, rjrjr, peng_google.com, Description: Integrating Peng's recent API changes to CellTableBuilder into HeaderCreator. HeaderCreator now includes both the rendering code and the event handling logic, eliminating the HeaderCreator.Helper class completely. This allows for a

[gwt-contrib] Re: Modifying DefaultHeaderCreator to support null sorting indicator images. Until a recent change,... (issue1533803)

2011-08-26 Thread jlabanca
committed as r10586 http://gwt-code-reviews.appspot.com/1533803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10587 committed - Adding a test case that verifies CellTable works even if all image res...

2011-08-26 Thread codesite-noreply
Revision: 10587 Author: gwt.mirror...@gmail.com Date: Fri Aug 26 09:55:44 2011 Log: Adding a test case that verifies CellTable works even if all image resources are null. Sort icons are only used if a column is sorted (sorting will cause an NPE). Background icons are used in the

[gwt-contrib] Re: Adding a test case that verifies CellTable works even if all image resources are null. Sort ico... (issue1534803)

2011-08-26 Thread jlabanca
committed as r10587 http://gwt-code-reviews.appspot.com/1534803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Integrating Peng's recent API changes to CellTableBuilder into HeaderCreator. HeaderCreator now... (issue1533804)

2011-08-26 Thread rjrjr
LGTM No strong feelings on the new names. http://gwt-code-reviews.appspot.com/1533804/diff/1/user/src/com/google/gwt/user/cellview/client/AbstractCellTable.java File user/src/com/google/gwt/user/cellview/client/AbstractCellTable.java (right):

[gwt-contrib] [google-web-toolkit] r10588 committed - Properly sets FLAG32BIT in Darwin Xulrunner 6.0

2011-08-26 Thread codesite-noreply
Revision: 10588 Author: acle...@google.com Date: Fri Aug 26 14:29:57 2011 Log: Properly sets FLAG32BIT in Darwin Xulrunner 6.0 http://code.google.com/p/google-web-toolkit/source/detail?r=10588 Modified: /plugin-sdks/gecko-sdks/gecko-6.0.0/Darwin-gcc3/include/js-config.h

[gwt-contrib] Re: Firefox 6 DevMode Plugin (issue1523805)

2011-08-26 Thread conroy
On 2011/08/26 21:31:29, acleung wrote: Also, looks like you still need to make the Darwin modifications Thanks for catching that. I forgot that was only on SVN and wasn't getting picked up by rietveld. LGTM http://gwt-code-reviews.appspot.com/1523805/ --

[gwt-contrib] Re: Integrating Peng's recent API changes to CellTableBuilder into HeaderCreator. HeaderCreator now... (issue1533804)

2011-08-26 Thread skybrian
Looks like it will work. Raised some issues that might be addressed in another CL. http://gwt-code-reviews.appspot.com/1533804/diff/1/user/src/com/google/gwt/user/cellview/client/AbstractCellTable.java File user/src/com/google/gwt/user/cellview/client/AbstractCellTable.java (right):