Customizing DisclosurePanel

2011-10-26 Thread Marwa
Hello all, I am trying to customize DisclosurePanel in a way that gives me ability to modify title (header text) on the widget itself. I just need to make the DisclosurePanel editable when it opens. When it closes, the header text should be showing normally (read only, not editable). I thought

Can't install GPE

2011-10-26 Thread dgaj
Hi, I've not been able to install the Google Plugin for Eclipse I get the following error message: Missing requirement: Google Plugin for Eclipse 3.7 2.4.2.relr37v201110112027 (com.google.gdt.eclipse.suite.e37.feature.feature.group 2.4.2.relr37v201110112027) requires 'org.eclipse.wst.css.core

strange JSNI Exception Something other than a Java object was returned from JSNI method ...: JS value of type boolean, expected java.lang.Object

2011-10-26 Thread tanteanni
our gwt produces every few seconds a strange exception: java.lang.IllegalArgumentException: Something other than a Java object was returned from JSNI method i googled around and find that this could be related to autoboxing (in this case probably boolean-Boolean: JS value of type boolean,

Re: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread tanteanni
i have one problem with this solution: testability since i generate those links in an activity i want test it without GwtTestCase. But using my AppPlaceHistoryMapper smells like the need for GWTTestCase?! i think i will refactor my code and give the place a string constant (public or with

Popup windows printing

2011-10-26 Thread Mike Dee
I have an app that creates reports, which are basically HTML. The reports need to be printed and that is what I'm trying to figure out. I'm porting an older app - that is more of traditional web app. Reports are displayed in a page - with a UI wrapped around them. When a user wants to print a

Re: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread Jens
Oh yes I think you will need a GWTTestCase as the mapper is created with GWT.create(). I did not had that in mind because I have implemented PlaceHistoryMapper myself (nicer url scheme) so there is no need for GWT.create(). -- You received this message because you are subscribed to the

Re: Nested Editor creation question

2011-10-26 Thread opn
Thanks for your answers! I found my mistake. My initWidget(uiBinder.createAndBindUi(this)); came too late in the constructor, after editorDriver = GWT.create(Driver.class); editorDriver.initialize(requestFactory, userEditor); The editor was not initialized at that point and so i got the

Re: Editor not flush values of subeditors

2011-10-26 Thread Thomas Broyer
On Tuesday, October 25, 2011 10:33:55 PM UTC+2, Cristian Rinaldi wrote: Thomas, thanks for the fast responce. I will see if this is causing the error. AddressWidget implements AddressView and Editor for AddressProxy, you say that the AddressView must be extend Editor? I'm saying that

Re: permutation explosion

2011-10-26 Thread mma
Here is an excerpt of console output (when I upload to appengine): Deploying frontend Preparing to deploy: Created staging directory at: '/var/folders/CC/CCXgSiQyGZChKamrrjcK2k+++TI/-Tmp-/appcfg7657467333929685094.tmp' Scanning for jsp files. Scanning files on

Handling authorization exception from server to client

2011-10-26 Thread André Salvati
Hi, I've been working with GWT 2.4 and trying to send an authorization exception from server to client whitout success. 1) Server: A - Raise ReportableException throught report() on my ServiceLayerDecorator. B – Send the following JSON to the client: {S:[false],I:[{F:true,M:Não

Why GWT ignore standard html tags ?

2011-10-26 Thread Gervais.b
Hi all, I'm playing with GWT since some weeks and now I want to create a form (not int Html sense); In this form I want to use the Html label tag to set focus on the field referenced by the for attribute value. 1° label for=fldFirstNameg:InlineLabel text={msg.firstName} // label But that don't

Re: future of gwt who use gwt

2011-10-26 Thread Nagin Kothari
Dart is yet very very young.. .I think it will take more than two years to gain popularity and acceptance(if at all?), also all browser vendors (like Microsoft) acceptance. So why worry right now about Dart? Any way new client side technologies keep coming every year. If at all Dart gains

Re: Road Map for GWT?

2011-10-26 Thread Thomas Broyer
There has never been any roadmap. -- 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/-/ckMYuP-q_kcJ. To post to this group, send email to

Re: future of gwt who use gwt

2011-10-26 Thread Jens
I think in the future GWT will compile to Dart for browsers that support Dart and compile to JS (using the dart compiler) for older browsers. Also it seems like that (typed) Dart syntax is very similar to Java so it should be possible to convert a GWT/Java project to Dart. It wouldn't be

Re: CellTable - how to load just one page?

2011-10-26 Thread Thomas Broyer
On Wednesday, October 26, 2011 7:20:20 AM UTC+2, Magnus wrote: Hi, I have a large list, which I do not want to load all at once. I would like to load and display just one page and let the user navigate to other pages. The problem I see with CellTable is that it needs the whole list at

Re: strange JSNI Exception Something other than a Java object was returned from JSNI method ...: JS value of type boolean, expected java.lang.Object

2011-10-26 Thread Thomas Broyer
Looks a lot like http://code.google.com/p/google-web-toolkit/issues/detail?id=5778 Does it only happen in Chrome, or on other browsers too? -- 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: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread Thomas Broyer
Isn't that what mocks are for? -- 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/-/bQ_3M5iyC8MJ. To post to this group, send email to

Activities and Places, how to deal with nested views ?

2011-10-26 Thread Gervais.b
Dear GWT profesionnals, I try to create an little app who allow users to make search. The main screen contains some inputs and a TabLayoutPanel who contains two set of inputs. The main screen is created with UiBinder and the two containeds into the tabs are also described with UiBinder. I have

Re: Activities and Places, how to deal with nested views ?

2011-10-26 Thread Juan Pablo Gardella
Did you see this post http://tbroyer.posterous.com/gwt-21-activities-nesting-yagni? 2011/10/26 Gervais.b gervai...@gmail.com Dear GWT profesionnals, I try to create an little app who allow users to make search. The main screen contains some inputs and a TabLayoutPanel who contains two set

Re: Handling authorization exception from server to client

2011-10-26 Thread Thomas Broyer
F is present in I, meaning one particular invocation (service method call) failed, not the whole batch request (well, actually, S:[false] says the one and only invocation failed, then the object in I gives information about the failure). FYI, the response format is defined by the

Error when migrating to GWT 2.4.0

2011-10-26 Thread Tiago Rinck Caveden
Hello all, I'm trying to migrate to GWT 2.4.0 in order to use some of its features and bug fixes, but when I try to load the application in Eclipse I have the following error: [WARN] Error for /gwtRequest java.lang.NoSuchMethodError:

Re: Why GWT ignore standard html tags ?

2011-10-26 Thread Thomas Broyer
On Wednesday, October 26, 2011 1:54:38 PM UTC+2, Gervais.b wrote: Hi all, I'm playing with GWT since some weeks and now I want to create a form (not int Html sense); In this form I want to use the Html label tag to set focus on the field referenced by the for attribute value. 1°

Re: Error when migrating to GWT 2.4.0

2011-10-26 Thread Juan Pablo Gardella
Put GWT 2.4 in first place in the classpath. 2011/10/26 Tiago Rinck Caveden cave...@gmail.com Hello all, I'm trying to migrate to GWT 2.4.0 in order to use some of its features and bug fixes, but when I try to load the application in Eclipse I have the following error: [WARN] Error for

Re: Error when migrating to GWT 2.4.0

2011-10-26 Thread Patrick Julien
I would check if an earlier gwt 2.x is still found on your classpath, like a local copy in web-inf -- 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: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread tanteanni
i guess you mean to implement my own PlaceHistoryMapper - only for test? that could work but now i am happy with my getPrefix() in place-class. With this i don't need a dependency to historymapper in my activity. (it don't feels right to use historymapper to get a constant string from a

Re: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread Thomas Broyer
On Wednesday, October 26, 2011 3:51:12 PM UTC+2, tanteanni wrote: i guess you mean to implement my own PlaceHistoryMapper - only for test? that could work Yes, with the added benefit that you could test whether you call the PlaceHistoryMapper with the appropriate argument, not whether the

problems with loading stuff/bootstrapping onModuleLoad triggered by an event

2011-10-26 Thread tanteanni
the scenario is as follows (i use gin): - onModuleLoad instantiates a ApplicationManager and runs start() on it. - ApplicationManager sets up all activitymanagers and the layout, gives every manager some display area, sets up history handler and start history

Re: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread tanteanni
thx! once again i learned a lot :-) -- 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/-/j91qOXlWMjoJ. To post to this group, send email to

Re: CellTable - how to load just one page?

2011-10-26 Thread David
Only if you know in advance the height of a rendered row. Hi Thomas, I'm close to a solution to providing dynamic retrieval of data via scrolling. The CellList example provided in the GWT Showcase does not work for me because is doesn't let the user immediately scroll to any portion of the

Re: Apache Tomcat - Access Files Outside Webroot

2011-10-26 Thread Jmscavaleiro
Hello Alan, Thank you very much for your reply. My problem is solved. Unfortunately Apache didn't wrote any exception on catalina.out log. And yes, you were right, it was a problem of paths. Simply i didn't create a new File with the absolute path of the destination location, i was using only

Re: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread tanteanni
ok some questions remain: i just implemented my AppHistoryMapper. I need one implementation per place, right? (i guess that is what gwt.create does: generating one mapper per place using the tokenizer code for implementation?) with this mock in place: is the code provided bei jens

Re: Apache Tomcat - Access Files Outside Webroot

2011-10-26 Thread Thad
You might want to take this up with the Tomcat user's list, but let me offer some ideas. First, I'll second what Alan says: Read your Tomcat logs. Second, where is \docs? Inside your $CATALINA_HOME/webapp/MyApp directory? You can't rely on that directory being writable or even being there.

Re: strange JSNI Exception Something other than a Java object was returned from JSNI method ...: JS value of type boolean, expected java.lang.Object

2011-10-26 Thread tanteanni
i think yes - thx for the hint -- 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/-/-yqRHTj48cYJ. To post to this group, send email to

Re: Popup windows printing

2011-10-26 Thread Jeffrey Chimene
On 10/26/2011 1:02 AM, Mike Dee wrote: I have an app that creates reports, which are basically HTML. The reports need to be printed and that is what I'm trying to figure out. I'm porting an older app - that is more of traditional web app. Reports are displayed in a page - with a UI wrapped

Re: How to get @Prefix value from an Place.Tokenizer? or how to set via clientbundle constants?

2011-10-26 Thread Jens
i guess that is what gwt.create does: generating one mapper per place using the tokenizer code for implementation? Only one mapper is generated. It contains a large generated if-then-else block that delegates getPlace() and getToken() to the correct Tokenizer based on the prefix (use -gen

Re: GWT Developer Plugin for Firefox 7

2011-10-26 Thread Joel
It is inside the conversation, you even had it included in your reply. Here is the direct link to it : http://groups.google.com/group/google-web-toolkit/attach/840a3dc826eda769/gwt-dev-plugin.xpi?part=4 Please take the time to report how it worked for you :-) Joel. On Oct 25, 5:28 pm, morteza

HTTPSession Cookie Changed

2011-10-26 Thread Niraj Salot
Dear all, We are facing some serious issue. After accessing the application for some time , We are having timeout issue. Although the timeout is set to 2 hours , we are seeing that session are expired only after 15-20 Minutes. We are using GWT , Spring. our application is deployed on JBOSS

Re: GWT Developer Plugin for Firefox 7

2011-10-26 Thread Joel
Thank you very much :-) On Oct 25, 5:14 pm, Alan Leung acle...@google.com wrote: Sometimes this week. It seems to be pretty stable. -Alan On Tue, Oct 25, 2011 at 7:31 AM, Ivan Dimitrijevic dim...@gmail.com wrote: Works regular for me on Mac OS X 10.7.2 64bit -- S

Re: Popup windows printing

2011-10-26 Thread Mike Dee
I was thinking about something like that. In the posts about popup windows this is seen as a negative because it is tricky to setup communications between the main window and the popup. But there really is no communication needed in this case. Do you see the popup window as a GWT window or just

Re: HTTPSession Cookie Changed

2011-10-26 Thread Juan Pablo Gardella
Are you use clusters? reverse proxy? 2011/10/26 Niraj Salot salotni...@gmail.com Dear all, We are facing some serious issue. After accessing the application for some time , We are having timeout issue. Although the timeout is set to 2 hours , we are seeing that session are expired only

Re: HTTPSession Cookie Changed

2011-10-26 Thread Jens
So far I have only seen this in clusters with session replication and a round robin load balancer (or multiple DNS entries which is basically some sort of round robin load balancing). Sometimes session replication fails and a new session is created on a cluster node. You could use sticky load

Re: Popup windows printing

2011-10-26 Thread Jeff Chimene
On 10/26/2011 08:38 AM, Mike Dee wrote: I was thinking about something like that. In the posts about popup windows this is seen as a negative because it is tricky to setup communications between the main window and the popup. But there really is no communication needed in this case. Do

Re: jquery?

2011-10-26 Thread t.dave
my $.02 would be that it all depends on what kind of project/app/ website you're building. if you want to have a true web application where the page seldom if ever does a full refresh and you want to have a lot of fancy and super awesome functionality, then GWT is the way to go. i've heard that

Re: Click Events not getting attached

2011-10-26 Thread Jeff Larsen
Why do you need to get widgets as elements? Why not just do p.add(new HTMLPanel(Hello a href=\#world\World/a); -- 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: Editor not flush values of subeditors

2011-10-26 Thread Cristian Rinaldi
Tanks Thomas for response. The rare is that AddressView implements EditorAddreessProxy I put the codes below: *Extract for TerceroNewView* public interface TerceroNewView extends View, EditorTercerosProxy { public interface Presenter extends MutablePresenterTerceroNewView{ }

Re: Road Map for GWT?

2011-10-26 Thread Anton DS
http://code.google.com/p/google-web-toolkit/w/list, here you can get a list of new features, some time. On Oct 26, 5:40 am, sampath sai vsampath@gmail.com wrote: Hi , Any one has RoadMap for GWT 2012? Please provide some links.. Thanks, Sai -- You received this message because you are

Loading Components On User Request

2011-10-26 Thread Ari
Hi, Can explain or point me to a tutorial/example that explains how to load different components on demand within my GWT application? For example, let's say my GWT application's main/start page is a home page with a navigation bar at the top and a content container below. Once a user clicks a

Request Factory - Getter issues

2011-10-26 Thread Antoine DESSAIGNE
Hi, I have 2 issues with the RequestFactory 2.4.0: - It doesn't seems to support array types as return types, RequestFooProxy[] getAllFoo() doesn't work - My Foo base type and thus my FooProxy types have getters without the 'get' prefix, it's name() instead of getName(). This throws an error at

Drag and Drop to a RichTextArea / IFrame?

2011-10-26 Thread Derek
I'm trying out some of the fun drag-and-drop stuff in GWT. My current attempt is to drag a file into a richtextarea, but nothing seems to be working correctly. It works fine if I use a FlowPanel or some other GWT widget, but not a RichTextArea despite it have an addDropHandler method. Anyone have

Re: Loading Components On User Request

2011-10-26 Thread Akash Gupta
Have a simple panel, and keep setting widget to that simple panel on click of navigation panel, for on demand part, create the component on click method if it is null, else set the already created widget. On Wed, Oct 26, 2011 at 8:41 PM, Ari ari.brandeis.k...@gmail.com wrote: Hi, Can explain

Re: Click Events not getting attached

2011-10-26 Thread Akash Gupta
ya use them as widgets instead of elements, if you want to retain the listeners. On Wed, Oct 26, 2011 at 10:13 PM, Jeff Larsen larse...@gmail.com wrote: Why do you need to get widgets as elements? Why not just do p.add(new HTMLPanel(Hello a href=\#world\World/a); -- You received this

Announce: GwtQuery 1.1.0

2011-10-26 Thread Manuel Carrasco Moñino
The GQuery team is proud to announce the version 1.1.0 of the library. We have been working hard in order to fix many issues and to achieve a closed jQuery API. The new release includes new features like the jQuery Ajax API, Data binding to easily manage json and xml data, better interaction

Chrome 15, GWT DMP Plugin crashes

2011-10-26 Thread pjspychala
After upgrading to a new version of the browser (Chrome 15) it seems that the plugin no longer likes whats going on. I've tried uninstalling and reinstalling the plugin without success. What happens: Webapp loads I can do some actions on the webapp, but 95% of actions will freeze chrome.

Re: Chrome 15, GWT DMP Plugin crashes

2011-10-26 Thread savilak
We have the same issue with Chrome 16.0.912.12 dev-m. In case we deploy the app or use IE in debug mode the app works fine! Thanks Savilak On Oct 26, 8:38 pm, pjspychala tomatoactiva...@gmail.com wrote: After upgrading to a new version of the browser (Chrome15) it seems that the plugin no

Re: Click Events not getting attached

2011-10-26 Thread gangurg gangurg
How to use them as Widgets ? On Wed, Oct 26, 2011 at 10:04 AM, Akash Gupta akash.b...@gmail.com wrote: ya use them as widgets instead of elements, if you want to retain the listeners. On Wed, Oct 26, 2011 at 10:13 PM, Jeff Larsen larse...@gmail.com wrote: Why do you need to get widgets

Re: Chrome 15, GWT DMP Plugin crashes

2011-10-26 Thread Juan Pablo Gardella
I use Chrome v16 dev and works. 2011/10/26 pjspychala tomatoactiva...@gmail.com After upgrading to a new version of the browser (Chrome 15) it seems that the plugin no longer likes whats going on. I've tried uninstalling and reinstalling the plugin without success. What happens: Webapp

How do I get a reference to a div and set its inner HTML?

2011-10-26 Thread laredotornado
Hi, I'm using GWT 2.4. I have a click handler attached to a button. Within the handler, I make an ajax call that returns HTML. I wish to populate the innerHTML of a div, given the element's id, but I'm not sure how to do that. Any suggestions? I'm currently working with ... public

Re: Road Map for GWT?

2011-10-26 Thread sampath sai
Thank you. Sai On Wed, Oct 26, 2011 at 6:28 AM, Anton DS anton.ds.alexe...@gmail.comwrote: http://code.google.com/p/google-web-toolkit/w/list, here you can get a list of new features, some time. On Oct 26, 5:40 am, sampath sai vsampath@gmail.com wrote: Hi , Any one has RoadMap for

Re: How do I get a reference to a div and set its inner HTML?

2011-10-26 Thread KevMo
If you know the ID of an element, you can get it by: Document.get().getElementById(CONTENT_DIV_ID); Cheers, Kevin On Oct 26, 11:18 am, laredotornado laredotorn...@zipmail.com wrote: Hi, I'm using GWT 2.4.  I have a click handler attached to a button. Within the handler, I make an ajax call

Re: CellTable styles incorrectly on IE9

2011-10-26 Thread Simon
I can confirm this bug. Not only does this affect CellTable, but DataGrid, CellSampler, and Cell Validation classes. Anyone can validate this by navigating to Google's own GWT Showcase at http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable in IE9. Where can we officially report

Re: CellTable styles incorrectly on IE9

2011-10-26 Thread Patrick Julien
I just tried the showcase link in IE9, it looks identical to chrome. I can select the controls. I don't know what could be wrong but it's working here -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

SplitLayoutPanel and Widgets using UiBinder

2011-10-26 Thread SigmaBlu
I currently have a SplitLayoutPanel (north, west, center, and south). I am trying to remove and add a widget based on the users interaction with the centers widget. For example, when the user clicks on a tables cell, it will remove the current widget and replace it with another widget.

Re: SplitLayoutPanel and Widgets using UiBinder

2011-10-26 Thread Patrick Julien
You need to put an additional layout in the center, like SimplePanel, you then remove and add your widget there. -- 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: SplitLayoutPanel and Widgets using UiBinder

2011-10-26 Thread Freddie Jefferson
Patrick, My apologies, but I am not trying to swap out the center panel's widget. However, I am trying to swap out the West panel's widget. On Wed, Oct 26, 2011 at 4:46 PM, Patrick Julien pjul...@gmail.com wrote: You need to put an additional layout in the center, like SimplePanel, you then

Re: SplitLayoutPanel and Widgets using UiBinder

2011-10-26 Thread Patrick Julien
OK, so use a SimplePanel or whatever you need in the west area and assign to that -- 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/-/Qt_vrQii8ZcJ.

Re: CellTable styles incorrectly on IE9

2011-10-26 Thread Jeff Larsen
I got the same as Patrick. CellTable is filled with styling. -- 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/-/nuW0uTpJ0NsJ. To post to this

Re: GWT advantages

2011-10-26 Thread Robert Zaleski
It's funny to me that you feel this way, because every large project I've worked on using a dynamically typed language has turned into a rats nest and has caused me undue headaches with me having to maintain the runtime context in my head instead of having that determined for me. I'm talking

a total GWT newbie needs help

2011-10-26 Thread Wicca
Hello everyone, I am very very new to this, but have somehow by hook or by crook, managed to create a website with pages, links, paypal widgets, etc. However - I do not know how to write html and only understand a very small portion of what I read as I look for a solution to my problem. Therefore

回复: a total GWT newbie needs help

2011-10-26 Thread 袁红杰
Does anybody know how to quit these email? i don't want this type mail sent to my box --- 11年10月27日,周四, Wicca wicca...@gmail.com 写道: 发件人: Wicca wicca...@gmail.com 主题: a total GWT newbie needs help 收件人: Google Web Toolkit google-web-toolkit@googlegroups.com 日期: 2011年10月27日,周四,上午8:03 Hello

Re: a total GWT newbie needs help

2011-10-26 Thread Jeff Chimene
On 10/26/2011 05:03 PM, Wicca wrote: Hello everyone, I am very very new to this, but have somehow by hook or by crook, managed to create a website with pages, links, paypal widgets, etc. However - I do not know how to write html and only understand a very small portion of what I read as I

Re: a total GWT newbie needs help

2011-10-26 Thread Bruno Sandivilli
If you want to build a website, and do not know html, but you've heard about GWT, you are fine. With GWT you can easily create a simple website 'without the need to use HTML'. Start by installing the GWT enviorement, and deploying the sample app. 2011/10/26 Jeff Chimene jchim...@gmail.com On

Re: Editor not flush values of subeditors

2011-10-26 Thread Cristian Rinaldi
To test I created a new view for Address without presenter injected into constructor. And the Address View is not injected into the TerceroEditor view. And things are just fine. This works well: @UiField AddressEditor2 address; *//AddressEditor is a concrete class.* private final

Re: Popup windows printing

2011-10-26 Thread Mike Dee
It seems easy to popup a new window, but I'm not sure how to stick the HTML into it. If Window.open would return a reference to the window, I could see a way to do it. Here is another idea. I can create another module to the GWT app. It's sole purpose is to handle printing. The GWT app I'm

Re: DataGrid and CellTable

2011-10-26 Thread Craig Mitchell
DataGrid also allows borders the selected cell. In my experience, CellTable sizes its columns to the data, however, is not scrollable. While DataGrid is scrollable, however, it's columns size only on what you ask them to, not on the data contents. ...I live in hope that a CellTable will

[gwt-contrib] Re: Fixing a bug in Cell Widgets when using the BOUND_TO_SELECTION KeyboardSelectionPolicy in which ... (issue1578805)

2011-10-26 Thread jlabanca
committed as r10724 http://gwt-code-reviews.appspot.com/1578805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Announce: GwtQuery 1.1.0

2011-10-26 Thread Manuel Carrasco Moñino
The GQuery team is proud to announce the version 1.1.0 of the library. We have been working hard in order to fix many issues and to achieve a closed jQuery API. The new release includes new features like the jQuery Ajax API, Data binding to easily manage json and xml data, better interaction

Re: [gwt-contrib] Re: loading live, instantly-generated data from the server and displaying it as a line graph

2011-10-26 Thread arif
Thank you for the reply! Is there any example/tutorial you could refer to that explains this in more detail? BTW, which users group you were referring to? On Tue, Oct 25, 2011 at 12:07 PM, Jeff Larsen larse...@gmail.com wrote: This is probably a better discussion for the users group, but I'll

[gwt-contrib] Re: Switch to internal implementation of StringInterner to avoid class loader (issue1578804)

2011-10-26 Thread tobyr
LGTM Still not really fond of the manual sharding, but it's hard to argue against fixed without regression. http://gwt-code-reviews.appspot.com/1578804/diff/4004/dev/core/test/com/google/gwt/dev/util/StringInternerTest.java File dev/core/test/com/google/gwt/dev/util/StringInternerTest.java

[gwt-contrib] Re: r10697 is back! It was falsely accused last time. Fingers crossed: (issue1578806)

2011-10-26 Thread rchandia
http://gwt-code-reviews.appspot.com/1578806/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderGenerator.java File user/src/com/google/gwt/uibinder/rebind/UiBinderGenerator.java (right):

[gwt-contrib] Make form event getTypes public. (issue1582803)

2011-10-26 Thread stephen . haberman
Reviewers: rjrjr, Message: I was writing some stubs for FormPanel and couldn't access the event types from another package. So far all the events I've needed have an accessible getType method, so I think this change is okay. Please review this at http://gwt-code-reviews.appspot.com/1582803/

[gwt-contrib] Re: Make form event getTypes public. (issue1582803)

2011-10-26 Thread stephen . haberman
http://gwt-code-reviews.appspot.com/1582803/diff/1/user/src/com/google/gwt/user/client/ui/FormPanel.java File user/src/com/google/gwt/user/client/ui/FormPanel.java (left): http://gwt-code-reviews.appspot.com/1582803/diff/1/user/src/com/google/gwt/user/client/ui/FormPanel.java#oldcode98