CellTable an AsyncDataProvider: no table content

2011-04-19 Thread Patrick Cailly
I'm trying to figure out how to use AsyncDataProvider with CellTable so I've this test code that has a Simple pager that is initialized and working ( display full range and current range and you can use () () () () ) the table is shows the headers but no dat what's wrong

Re: Implement select all in CellTable

2011-04-19 Thread Alexandre Ardhuin
Hi, You can use a com.google.gwt.view.client.MultiSelectionModel with your CellTable MultiSelectionModelT msm = new MultiSelectionModelT(); cellTable.setSelectionModel(msm); for (T item : cellTable.getVisibleItems()) { msm.setSelected(item, true); } Alexandre 2011/4/18 Subhrajyoti Moitra

Re: Custom Server Validation in GWT 2.2

2011-04-19 Thread Andy
This is just an update on this question, I am able to do the server custom constraint successfully using GWT 2.2 After checking the source code, I think GWT handles the validation the same way as other framework, hence I just following the guide below to create the customer constraint

Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread jaga
I noticed that if the temp directory wasn't cleared Eclipse took longer and longer to start up. Up to 10 minutes. I wrote a simple script which runs every boot to clear out the offending files. I am not sure if this affects the compilation performance or not. On Apr 18, 9:24 pm, Jeff Larsen

Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread DaveC
I've also noticed that moving from a GWT 1.7 version of building apps to the 2.1 way (UiBinder CellWidgets etc) makes a noticable difference... (less java/ecmascript code I guess). On Apr 18, 9:24 pm, Jeff Larsen larse...@gmail.com wrote: Lotus notes ouch! -- You received this message

Odg.: Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread maticpetek
mike b, This is something to try - if I only change code in async block, maybe it will recompile only this part. But this will note have any effect on startup time. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: How to add a SliderBar to a panel instead of RootPanel?

2011-04-19 Thread dadada
I copied your code and realised there's a lot of missing dependencies like what's playpausebutton etc. if you want people to help, you need to address all these in fact, give all your code. :) On Apr 19, 5:49 am, Rahul Sanghi rahul7...@gmail.com wrote: I am trying to develop a HTML5 based

Re: problem in debug a gwt project

2011-04-19 Thread dadada
you are facing seriously basic problem. I suggest you start over again. download eclipse for java http://www.eclipse.org/downloads/ ( the second from top) download the latest jdk http://www.oracle.com/technetwork/java/javase/downloads/index.html. if you are using mac, i suggest openjdk.

Re: External Images in CellTable cell

2011-04-19 Thread Manvel Saroyan
Hi, Try to look at this link - http://groups.google.com/group/google-web-toolkit/browse_thread/thread/1995e2bb604088c6/9c919c2ca7ce55f2?lnk=gstq=gwt+ImageCell#9c919c2ca7ce55f2 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: External Images in CellTable cell

2011-04-19 Thread Manvel Saroyan
On Apr 19, 2:20 pm, Manvel Saroyan saroy...@gmail.com wrote: Hi, Try to look at this link -http://groups.google.com/group/google-web-toolkit/browse_thread/threa... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: size of my text remains unchanged when I zoom in/out

2011-04-19 Thread Harald Schilly
On Tue, Apr 19, 2011 at 03:26, dadada ytbr...@gmail.com wrote: is this a browser issue? both of them use the webkit render engine. in chrome, you can go into the tools menu developer tools. then open the elements tab, click on the magnification glass at the bottom left, then on the element in

Strange scrolling div problem in WebKit browsers

2011-04-19 Thread Jens
Hi, I have a strange problem and maybe someone here can give me a hint whats going on. Basically I have a custom composite that acts as a list. This list composite wraps a ScrollPanel which contains a AbsolutePanel that contains the list items positioned according to their height. The

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-19 Thread Musicman75
Here's my implementation to handle column resizing. I created the CellTable class in my SourceTree with same package name as Google named it. I extended the onBrowserEvent2 function with my resizing function: // Forward the event to the associated header, footer, or column. boolean

SimplePager row count

2011-04-19 Thread Issam
Hi, I'm encountering a problem with SimplePager; the problem is that when I clic to display the next page of rows the indicator of rows number multiply by two (for example initially I have to display 30 rows, initially the pager displays 1-8 of 30 However, when I clic to display the next page

Re: Using GWT only for UI design

2011-04-19 Thread Harald Schilly
On Tue, Apr 19, 2011 at 00:19, The Main Meyn ajrm...@gmail.com wrote: Does GWT have an XML parser, so that I could make sure all my servlets return an XML. Yes For example how would I get a combo designed using GWT to load the following servlet.

W3C DOM Compatibility

2011-04-19 Thread Javier
Looking to the W3C DOM Compatibility - CSS Object Model View (http:// www.quirksmode.org/dom/w3c_cssom.html) I see that only some properties/ methods are supported in GWT. I would like to know if there is a criteria to determine which of the methods/properties are supported and which are not. In

Re: Dynamic JavaScript

2011-04-19 Thread Paul Robinson
It's difficult to make the javascript secure like this. You would have to control who can download which javascript from the server. While it may be technically possible, it's probably not worth it. It would be much easier for you if you accept something less secure, but that achieves

StackPanel

2011-04-19 Thread Ani
Hello, I hope that someone can help me with this question. Is it possible to show more than 1 item on a stackpanel? I mean, i know that by definition it just show 1 at time, but i'd like to know if it's possible to do something like that Thank you very much for your help. -- You received

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

2011-04-19 Thread tanteanni
with your (http://groups.google.com/group/google-web-toolkit/ browse_frm/thread/be1e8e363a6f0794/9ceb716e29a5b985) help i learned how to implement my own SuggestionOracle(AuSuggestOracle) and own Suggestions(AuMultiWordSuggestion). In my case the suggestion object is constructed with a DTO. On a

R: GWT MVP how to map a Composite Place to its corresponding Activities

2011-04-19 Thread federico
One way to go could be to return an instance of CompositeActivity that take the CompositePlace and manage the subplaces internally -- 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: StackPanel

2011-04-19 Thread Issam
Hi, Make the one item a VerticalPanel (or HorizontalPanel) and then put what ever you want in Vertical/Horizontal Panel.. On Apr 19, 1:44 pm, Ani anapont...@gmail.com wrote: Hello, I hope that someone can help me with this question. Is it possible to show more than 1 item on a stackpanel? I

Re: Problems with GPE, maven, m2eclipse, WTP

2011-04-19 Thread Paul Schyska
Hi Martin, thanks for your answers. - inteface generation you can tell eclipse to ignore stuff in your target folder: just right click the target-folder select 'properties' and setup resource filters then you will not have any conflict Unfortunateley, I still have two copies of the files

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

2011-04-19 Thread Ben Imp
I ran into this issue as well - knowledge of the domain in the view. I ended up getting around it by creating a delegate for the suggest oracle. public class SuggestOracleDelegator extends SuggestOracle { private SuggestOracle delegate = null; public SuggestOracleDelegator() {

help diagnose: Server class 'org.junit.Before' could not be found in the web app

2011-04-19 Thread cri
I'm getting a warning when starting my app in hosted mode: Server class 'org.junit.Before' could not be found in the web app, but was found on the system classpath. Apparently, one of my junit test cases is getting loaded by the server but I'm not to determine how. Can anyone suggest how I can go

Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread Palo G.
The main problem is that every time when hosted mode is started all classes are loaded. When you refresh hosted mode and your classes doesn't implement Serializable then these classes will be realoaded even when they were not modified. I don't really now if this will work for GWT hosted mode, but

Re: help diagnose: Server class 'org.junit.Before' could not be found in the web app

2011-04-19 Thread Magno Machado
Do you put your test cases on the same folder as your production classes? On Tue, Apr 19, 2011 at 10:21 AM, cri chuck.irvine...@gmail.com wrote: I'm getting a warning when starting my app in hosted mode: Server class 'org.junit.Before' could not be found in the web app, but was found on the

Re: How to speed up Hosted mode

2011-04-19 Thread Thomas Broyer
On Monday, April 18, 2011 1:49:49 PM UTC+2, maticpetek wrote: Hello, We are developing our app in GWT now for a couple of years. And code base is becoming bigger every day And hosted mode is also become very slow. Refresh in browser takes around 1 minute. Forms opening a couple of

background color of a row in celltable

2011-04-19 Thread Darpan Kamboj
I want to change the color of row on a particular condition but I'm not able to do this , I've have used following piece of code for this. able.setRowStyles(new RowStyleslogInfo() { @Override public String getStyleNames(logInfo p, int rowIndex) {

Binary with x-user-defined Charset

2011-04-19 Thread F@hri
Hi I am are trying to get the binary transfer data within the gwt framework. Unfortunatly this won't work. It seems as if the Binary String gets UTF-8 reinterpreted? The String going over the wire as what Wireshark tells me: a0 0f 00 00 70 85 9d 0f 00 00 ... and the data which is from the

encoding content

2011-04-19 Thread mac
Hi, I have an assignment in which I have to write a test which will send data to a servlet which extends RemoteServiceServlet using Apache HttpClient functionality. The content of the request has to be text/x- gwt-rpc. I understand that if you use GWT.create(), the serialization / encoding of

Imagecell in celltable

2011-04-19 Thread Darpan Kamboj
I want to add a Imagecell in celltable and used following code snippet but not able to add a column. ColumnlogInfo,String imageColumn=new Column logInfo,String(new ImageCell()) { @Override public String

Not able to access data of selected [row , col] visualization table

2011-04-19 Thread andy
i am able to access the selected row but i am able to access the column. i think it always select the row, not the column. Anybody please to select the column as well as the data of selected row and col. I want to retrieve the selected data How should i do it? please help me... -- You

Re: help diagnose: Server class 'org.junit.Before' could not be found in the web app

2011-04-19 Thread Jeff Larsen
Could also be that you're using maven, and have your tests getting compiled and hosted would think those classes are going to be a part of the build, but when you actually compile the app, they aren't included. I would try kicking off a deploy and see if it actually works. If it does, ignore

Adding image to a cell of CellTree

2011-04-19 Thread lamre
Hi, i want to add an image to the cell's of a CellTree but i don't know how to do it. Thanks. CellCartella cell = new AbstractCellCartella(dblclick) { @Override public void render(Context context, Cartella value, SafeHtmlBuilder sb) {

How do I test task queue ?

2011-04-19 Thread suersh babu
Hi, We are using gwt for our application. As we need task queue because of app engine time limit, so we are adding task in the queue by using rpc call, but I need to test this task whether that task got completed or not so how do I test. I also visited task queue test:

KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread Nisha
Hi All, Here is the code I have for suggest box. But the code inside the keypress event is being called twice. Please help box = new SuggestBox(objOracle); box.addKeyPressHandler(new KeyPressHandler() { public void onKeyPress(KeyPressEvent event) {

Re: combobox - combination of list- and suggestion box

2011-04-19 Thread Isaac Truett
I did use my own image for ComboBox. It can be overridden if you want to use your image instead. I think you're confused about ListBox. It's just a GWT widget wrapper for an HTML select element. The button image isn't something that comes with GWT, it's the browser's look and feel. If you want to

Re: How to speed up Hosted mode

2011-04-19 Thread zundel
One thing you can try that I believe will be in GWT 2.3 is to set the experimental GWT flag -XenableGeneratorResultCaching. It gives a modest speedup if your app uses a lot of client bundles. Thomas is referring to the new PersistentUnitCache class we've been working on. It isn't ready in

Re: KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread Ben Imp
I believe you are hitting this. http://code.google.com/p/google-web-toolkit/issues/detail?id=3533 There's a few suggestions in there for how to go about fixing it. I ended up creating a de-duping Handler that wont fire its delegate when it gets called for the duplicate event. -Ben -- You

Re: KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread Thomas Broyer
Best to simply add the event handler to the SuggestBox's TextBox! suggestBox.getTextBox().addKeyPressHandler(handler); -- 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: KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread Shilpa
Thanks Broyer. You helped a lot. It worls :) On Tue, Apr 19, 2011 at 12:16 PM, Thomas Broyer t.bro...@gmail.com wrote: Best to simply add the event handler to the SuggestBox's TextBox! suggestBox.getTextBox().addKeyPressHandler(handler); -- You received this message because you are

Trying out the example for gxt explorer and on compile it gives the following error - Please help

2011-04-19 Thread Nisha
Hi All, I am trying to work on the following example from http://www.sencha.com/examples/#basicgrid and it gives me the following error Found interface com.google.gwt.core.ext.typeinfo.JClassType, but class was expected Any help is appreciated. Thanks -- You received this message because

CellTable Sort in 2.2

2011-04-19 Thread SVR
I am using payerColumn.setSortable(true); where payerColumn is of type: private class PayerNameColumn extends ColumnBasicLocationData, String the document just tells to use the api, but I dont get the up/down arrow to do the sorting? What else needs to be done? -- You received this message

Re: Trying out the example for gxt explorer and on compile it gives the following error - Please help

2011-04-19 Thread Nisha
Please Help... I assume this is a jar conflict ..can anyone help ...what is the reason for Found interface com.google.gwt.core.ext.typeinfo.JClassType, but class was expected On Apr 19, 12:30 pm, Nisha shilp...@gmail.com wrote: Hi All, I am trying to work on the following example from

How to generate complex graphs not available in google-visualization apis

2011-04-19 Thread Gopi Krishnan Nambiar
Hi, I am using GWT in my project and want to have a graph which looks like http://www.graphviz.org/content/crazy . Basically a graph with a lot of interlinkings and connections with splines (curved connections). I would love to have a grph editting functionality with the same. I haven't yet

Re: Trying out the example for gxt explorer and on compile it gives the following error - Please help

2011-04-19 Thread Jeff Larsen
what version of gxt are you using? You will need to use a specific version that is compatible with gwt 2.2. If you downgrade to gwt 2.1.1 the version of gxt you're using should work. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread Ben Imp
That seems a lot simpler than what I did. Awesome. -Ben -- 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: KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread karthik reddy
Is the real culprit for this behavior the following lines in the addEventsToTextBox() method of SuggestBox class: *delegateEvent(SuggestBox.this, event);* I think there are about 4 occurrences of this in the addEventsToTextBox() method:

Tomcat Deployment SOAP exception

2011-04-19 Thread Xing Xing
Hi All, I tried to deploy my application to tomcat web server. But I couldn't make it work. It seems that the Tom Cat server cannot dynamically generated some wrapper class for SOAP. When I run it in hosted mode, everything works. It can dynamically create request wrapper Class 2011-04-19

Search/filter form : should i use FormPanel ?

2011-04-19 Thread Celinio
Hi, I have this page where i need to add a search/filter area at the top with several textboxes, comboxes etc. They will contain the critaerias of the research. At the bottom i will add a CellTable which will display the results of the research. My question is : what's the best way to code this

Re : Search/filter form : should i use FormPanel ?

2011-04-19 Thread Thomas Broyer
Le mardi 19 avril 2011 23:11:16 UTC+2, Celinio Fernandes a écrit : Hi, I have this page where i need to add a search/filter area at the top with several textboxes, comboxes etc. They will contain the critaerias of the research. At the bottom i will add a CellTable which will display the

Re: Can't compile gadget with GWT Plugin 2.2 or 2.3 Beta

2011-04-19 Thread dicko
Thanks for your help so far but I'm still having issues. Now I'm getting this error when I attempt to compile: Compiling module com.google.gwt.gadgets.Gadgets [ERROR] Module has no entry points defined Any hints? On Apr 15, 11:25 pm, Eric Ayers zun...@google.com wrote: Yeah, I forgot,

Gwt plugin 2.2 designer not working mac osx

2011-04-19 Thread mdwarne
Hi, I have installed the GWT plugin v2.2 under Eclipse 3.6 on Mac OSX 10.6. I can create a GWT project, and compile/test. However there are no designer options. For example the Menu Group with options to create a new Composite etc are not in my new menu tree. I checked that the project setting

Re: How to speed up Hosted mode

2011-04-19 Thread Aladdin
I know that you can use cluster to compile your app So , 2000$ can build you 6 diskless computers :) Look that up in youtube or google On Apr 18, 2:49 pm, maticpetek maticpe...@gmail.com wrote: Hello,    We are developing our app in GWT now for a couple of years. And code base is

Re: Can't compile gadget with GWT Plugin 2.2 or 2.3 Beta

2011-04-19 Thread Eric Ayers
Do you have a class that extend com.google.gwt.gadgets.client.GadgetT ? If that doesn't make sense to you, then check out the GettingStarted guide at http://code.google.com/p/gwt-google-apis On Tue, Apr 19, 2011 at 7:39 PM, dicko d...@mothdesign.com.au wrote: Thanks for your help so far but

Re: Custom Server Validation in GWT 2.2

2011-04-19 Thread Ahmed Mohammed
Is the GWT validation api released or not. I checked out the validation sample project from trunk and it complains about below missing files. com.google.gwt.validation.client.AbstractValidationMessageResolver; com.google.gwt.validation.client.UserValidationMessagesResolver; On Apr 19, 3:09 am,

Re: StackPanel

2011-04-19 Thread Gaurav Vaish
Hi Ani, If you can elaborate on what you're trying to achieve, the forum may be able to suggess you with better options. -- Happy Hacking, Gaurav Vaish http://www.incoleg.com On Apr 19, 5:33 pm, Issam boualem.is...@gmail.com wrote: Hi, Make the one item a VerticalPanel (or HorizontalPanel)

Re: How do I test task queue ?

2011-04-19 Thread suersh babu
I think my previous message was not proper. I am rephrasing my question again. I am adding task in the queue. The task is performing the work through worker URL. How do I setup the test environment so that the worker URL actually runs when the task is executed. Suresh. On Tue, Apr 19, 2011 at

[gwt-contrib] Re: Remove JAnnotation from GWT AST. (issue1420803)

2011-04-19 Thread zundel
Some comments from the peanut gallery http://gwt-code-reviews.appspot.com/1420803/diff/2001/dev/core/super/com/google/gwt/core/client/impl/ArtificialRescue.java File dev/core/super/com/google/gwt/core/client/impl/ArtificialRescue.java (right):

[gwt-contrib] Re: Suppresses multiple warnings related to validation .jar file and (issue1424804)

2011-04-19 Thread zundel
http://gwt-code-reviews.appspot.com/1424804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Suppresses multiple warnings related to validation .jar file and (issue1424804)

2011-04-19 Thread zundel
Before this patch, compiling this app would return many lines of output of the form: [java] Checking rule generate-with class='com.google.gwt.validation.rebind.GwtSpecificValidatorGenerator'/ [java][WARN] Unknown type

[gwt-contrib] Re: Small generator testing framework (issue1424805)

2011-04-19 Thread zundel
LGTM2 http://gwt-code-reviews.appspot.com/1424805/diff/1/dev/core/src/com/google/gwt/dev/javac/testing/impl/MockResource.java File dev/core/src/com/google/gwt/dev/javac/testing/impl/MockResource.java (right):

[gwt-contrib] Re: Remove JAnnotation from GWT AST. (issue1420803)

2011-04-19 Thread bobv
LGTM. http://gwt-code-reviews.appspot.com/1420803/diff/31/dev/core/src/com/google/gwt/dev/jjs/ast/JAnnotation.java File dev/core/src/com/google/gwt/dev/jjs/ast/JAnnotation.java (left):

[gwt-contrib] [google-web-toolkit] r10019 committed - Add daniel.r.b...@gmail.com to CLA-SIGNERS file.

2011-04-19 Thread codesite-noreply
Revision: 10019 Author: b...@google.com Date: Tue Apr 19 07:26:05 2011 Log: Add daniel.r.b...@gmail.com to CLA-SIGNERS file. http://code.google.com/p/google-web-toolkit/source/detail?r=10019 Modified: /CLA-SIGNERS === --- /CLA-SIGNERSThu

[gwt-contrib] [google-web-toolkit] r10020 committed - Suppresses multiple warnings related to validation .jar file and...

2011-04-19 Thread codesite-noreply
Revision: 10020 Author: zun...@google.com Date: Tue Apr 19 04:01:17 2011 Log: Suppresses multiple warnings related to validation .jar file and replaces them with a single warning to add the .jar file to the classpath. Review at http://gwt-code-reviews.appspot.com/1424804

[gwt-contrib] [google-web-toolkit] r10021 committed - Allow ServiceLocator instantiation to be controlled via RequestFactory...

2011-04-19 Thread codesite-noreply
Revision: 10021 Author: gwt.mirror...@gmail.com Date: Tue Apr 19 07:59:33 2011 Log: Allow ServiceLocator instantiation to be controlled via RequestFactory ServiceLocator. http://gwt-code-reviews.appspot.com/1427801/ http://code.google.com/p/google-web-toolkit/issues/detail?id=6264

[gwt-contrib] Re: Suppresses multiple warnings related to validation .jar file and (issue1424804)

2011-04-19 Thread zundel
Submitted as r10020 http://gwt-code-reviews.appspot.com/1424804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Suppresses multiple warnings related to validation .jar file and (issue1424804)

2011-04-19 Thread Eric Ayers
good question. I know that the -sources.jar file is needed to just make the errors go away for legacy projects that don't reference any classes that use javax.validation, but I haven't seen the messages for a sample that actually needs validation. On Tue, Apr 19, 2011 at 11:13 AM,

[gwt-contrib] Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
Reviewers: bobv, Description: Make EventBus backward compatible. Please review this at http://gwt-code-reviews.appspot.com/1423803/ Affected files: M user/src/com/google/gwt/event/shared/EventBus.java M user/src/com/google/gwt/event/shared/ResettableEventBus.java M

[gwt-contrib] Re: Suppresses multiple warnings related to validation .jar file and (issue1424804)

2011-04-19 Thread Rodrigo Chandia
On Tue, Apr 19, 2011 at 11:19 AM, Eric Ayers zun...@google.com wrote: good question. I know that the -sources.jar file is needed to just make the errors go away for legacy projects that don't reference any classes that use javax.validation, but I haven't seen the messages for a sample that

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Adds method to customise ServiceLocator instantiation in ServiceLayerDecorator (issue1427801)

2011-04-19 Thread daniel . r . bell
Reviewers: , Description: Issue 6264: We require a way to override default instantiation of ServiceLocators in a similar fashion to Locators in ServiceLayerDecorator, to provide ServiceLocators with Guice. Please review this at http://gwt-code-reviews.appspot.com/1427801/ Affected files:

[gwt-contrib] Re: Future of CellTable

2011-04-19 Thread Adam Bender
Just wanted to see if there have been any updates regarding the CellTable and the use of fixed headers + scrollable content areas. I have been keeping an eye on the commit logs and havent seen anything related to scrolling. Is this a feature that is still planned for 2.3? Thanks, Adam On Feb

[gwt-contrib] Re: Small generator testing framework (issue1424805)

2011-04-19 Thread Scott Blum
Yeah, they're in an impl package. On Tue, Apr 19, 2011 at 11:12 AM, schm...@google.com wrote: I think the idea here is that no one (outside the existing GWT tests) should reference the *Resource classes directly - that's why we have the new interface Source. This way, you should be able to

[gwt-contrib] Re: * Soft permutations fail to collapse. Collapse 'derived' properties chain when 'parent' properti... (issue1424803)

2011-04-19 Thread fabiomfv
http://gwt-code-reviews.appspot.com/1424803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: * Soft permutations fail to collapse. Collapse 'derived' properties chain when 'parent' properti... (issue1424803)

2011-04-19 Thread fabiomfv
http://gwt-code-reviews.appspot.com/1424803/diff/1/dev/core/src/com/google/gwt/dev/cfg/PropertyPermutations.java File dev/core/src/com/google/gwt/dev/cfg/PropertyPermutations.java (right):

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Future of CellTable

2011-04-19 Thread John LaBanca
I'm working on it this week. It won't be included in 2.3, but should be committed to trunk next week. Thanks, John LaBanca jlaba...@google.com On Mon, Apr 18, 2011 at 2:14 PM, Adam Bender adamben...@gmail.com wrote: Just wanted to see if there have been any updates regarding the CellTable

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

2011-04-19 Thread rice
Reviewers: jat, Description: Wrap low-priorty log calls with an 'if' test to avoid unnecessary calls Use constants from TreeLogger rather than accessing TreeLogger.Type directly where possible Please review this at http://gwt-code-reviews.appspot.com/1426802/ Affected files: M

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

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

[gwt-contrib] [google-web-toolkit] r10022 committed - Add @SkipInterfaceValidation to RequestFactory to selectively bypass m...

2011-04-19 Thread codesite-noreply
Revision: 10022 Author: t.bro...@gmail.com Date: Tue Apr 19 06:04:28 2011 Log: Add @SkipInterfaceValidation to RequestFactory to selectively bypass matching interface methods to domain methods. http://gwt-code-reviews.appspot.com/1338807 Patch by: t.broyer Review by: bobv

[gwt-contrib] Re: Introduces SkipInterfaceValidation annotation. (issue1338807)

2011-04-19 Thread bobv
Committed with minor modifications at r10022. http://gwt-code-reviews.appspot.com/1338807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Supress errors when the binary validation.jar file is missing from the (issue1422804)

2011-04-19 Thread zundel
Reviewers: jbrosenberg, tobyr, rchandia, Description: Supress errors when the binary validation.jar file is missing from the class path (previous patch only address source jar) Please review this at http://gwt-code-reviews.appspot.com/1422804/ Affected files: M

[gwt-contrib] Re: Supress errors when the binary validation.jar file is missing from the (issue1422804)

2011-04-19 Thread zundel
If you just add the validation-api-version-sources.jar, you'll get more errors. You need validation-api-version.jar too [java] Compiling module com.google.gwt.gadgets.sample.hellogadgets.HelloGadgets [java]Resolving

[gwt-contrib] Re: * Soft permutations fail to collapse. Collapse 'derived' properties chain when 'parent' properti... (issue1424803)

2011-04-19 Thread fabiomfv
http://gwt-code-reviews.appspot.com/1424803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Remove JAnnotation from GWT AST. (issue1420803)

2011-04-19 Thread scottb
Thanks guys. http://gwt-code-reviews.appspot.com/1420803/diff/2001/dev/core/super/com/google/gwt/core/client/impl/ArtificialRescue.java File dev/core/super/com/google/gwt/core/client/impl/ArtificialRescue.java (right):

[gwt-contrib] Re: * Soft permutations fail to collapse. Collapse 'derived' properties chain when 'parent' properti... (issue1424803)

2011-04-19 Thread fabiomfv
http://gwt-code-reviews.appspot.com/1424803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds support to EditorDrivers for boolean accessors (issue1427802)

2011-04-19 Thread Daniel Bell
Hi All, I've uploaded another patch to Rietveld at http://gwt-code-reviews.appspot.com/1427802/ . Could somebody please review this for me? Also, is asking for a review on here the correct protocol for new (unassigned) issues? Cheers, Daniel On 20 April 2011 02:38, daniel.r.b...@gmail.com wrote:

[gwt-contrib] [google-web-toolkit] r10023 committed - Make EventBus backward compatible....

2011-04-19 Thread codesite-noreply
Revision: 10023 Author: rj...@google.com Date: Tue Apr 19 06:56:46 2011 Log: Make EventBus backward compatible. Review at http://gwt-code-reviews.appspot.com/1423803 Review by: robertvaw...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10023 Modified:

[gwt-contrib] Re: Supress errors when the binary validation.jar file is missing from the (issue1422804)

2011-04-19 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1422804/diff/1/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: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
Inadequate, need to give similar treatment to the addHandler methods. Duh. http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Suppresses multiple warnings related to validation .jar file and (issue1424804)

2011-04-19 Thread Eric Ayers
Well you are right. This patch will suppress errors if you are missing both .jar files, but if you add in validation-api-version-sources.jar, you get a different slew of non-fatal errors. followup patch at: http://gwt-code-reviews.appspot.com/1422804 On Tue, Apr 19, 2011 at 11:24 AM, Rodrigo

[gwt-contrib] Re: Include all needed javax.validation classes for the api checker. (issue1425802)

2011-04-19 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1425802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10025 committed - Supress errors when the binary validation.jar file is missing from the...

2011-04-19 Thread codesite-noreply
Revision: 10025 Author: zun...@google.com Date: Tue Apr 19 07:37:00 2011 Log: Supress errors when the binary validation.jar file is missing from the class path (previous patch only address source jar) Review at http://gwt-code-reviews.appspot.com/1422804

[gwt-contrib] Re: Make EventBus backward compatible. (issue1423803)

2011-04-19 Thread rjrjr
Noticed the half-assedness after submitting r10023. Will follow up w/new patch. With unit test. And less rushing. http://gwt-code-reviews.appspot.com/1423803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Finishes the job of making EventBus backward compatible, (issue1425804)

2011-04-19 Thread rjrjr
Reviewers: bobv, Description: Finishes the job of making EventBus backward compatible, half done in r10023 Please review this at http://gwt-code-reviews.appspot.com/1425804/ Affected files: M user/src/com/google/gwt/event/shared/EventBus.java M

Re: [gwt-contrib] Re: Future of CellTable

2011-04-19 Thread Jeff Larsen
John, can you elaborate what - Expandable rows (really, a fully customizable table builder, probably post GWT 2.3) means? I'm currently working on adding groupability to a copy of celltable and its hierarchy. Will the fully customizale table builder be the solution I'm looking for?

  1   2   >