Re: Layout and styling of HorizontalPanel/VerticalPanel

2011-07-31 Thread Andrei
If you use myPanel class for a Vertical or Horizontal panel, you can set the style for td elements of these panels directly in the CSS file: .myPanel td { margin: 6px 0; } On Jul 28, 8:41 pm, clay claytonw...@gmail.com wrote: The setStyleName method sets the CSS class of the generated

Re: GWT/GPE 2.4.0 RC1 is available

2011-07-31 Thread Andrei
DataGrid may have a fixed header and footer rows. In CellTable all rows scroll together. On Jul 28, 6:40 pm, James Wendel jmwen...@gmail.com wrote: To ask, does the DataGrid differ from CellTable only in the content area being scrollable?  Are there are differences I'm not seeing? Thanks,

Re: ProgressBar for GWT 2.3

2011-07-31 Thread Nick
I have been using this simple css based cell widget progress bar: http://code.google.com/p/gwt-cell-widgets/source/browse/trunk/GWT-Cell-Widgets-Example/src/com/siderakis/gwt/cellwidgets/client/StatusCell.java -- You received this message because you are subscribed to the Google Groups Google

XMLHttpRequest2

2011-07-31 Thread Allahbaksh
HI All, We are trying to write a wrapper over XMLHttpRequest2. Can people point out if some one has written some part of it already. @GWT Contributor Whether we have some code already in developer own trunk? Warm Regards, Allahbaksh -- You received this message because you are subscribed to the

How to use RequestFactory: .with(propertyRefs) for composition of objects

2011-07-31 Thread basilboli
Hello, I am newbie to GWT and I need your professional advice. My question is : how to use RequestFactory: *.with(propertyRefs)* for kind of “tree” structures when these propertyRefs itself contains list of items I would like to retrieve. Some details: On the server-side I have

Re: GWT/GPE 2.4.0 RC1 is available

2011-07-31 Thread Lars Huber
Will it be possible to use @Category on Proxies? Is there a way to realize additional logic for RF proxies, with @Category or another way? Currently I super sourced some RF core classes and replaced the generator. I'am able to use @Category as described in AutoBeans. But this means a lot of

Re: How to use RequestFactory: .with(propertyRefs) for composition of objects

2011-07-31 Thread Ryan McFall
Hi there: Assuming that your lists are named listB, listC, listD, then you would write: .with (A.listB, A.listB.listC, A.listB.listC.listD) to cause your various proxies to be populated by a single call to the server. Hope that helps, Ryan On Jul 31, 3:31 pm, basilboli basilb...@gmail.com

Aw: How to use RequestFactory: .with(propertyRefs) for composition of objects

2011-07-31 Thread Jens
The .with method accepts a string array via variable arguments. So you can write .with(a.b, a.b.c, a.b.c.d). If you use RequestFactoryEditorDriver there is also a method called getPath() with returns the correct path array needed by your editors. -- J. -- You received this message because

GDATA WITH ECLIPSE

2011-07-31 Thread Manny
I used the new Add google Api's feature with the eclipse plugin for google to add support for the calendar api to my project. Then I tried to setup a test example using rpc to connect to the calender api on the server side. HOWEVER, several classes and functions appear to be missing from the gwt

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-31 Thread Brian Reilly
As promised, I committed my gwt-multipage changes (to a branch) and attached a test jar (gwtmultipage-core-20110731.jar) to the issue: http://code.google.com/p/gwt-multipage/issues/detail?id=21. It's not an official release yet, but that's the jar that I've been using it in production with GWT 2.3

using jmock with jsni methods

2011-07-31 Thread saurabh
Hi all, i'm trying to use jmock for mocking object while testing our application. While some of the classes make use of jsni methods which form core part of application. these classes are being used by classes which are used in test class. e.g. class Core uses jsni code for important

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-31 Thread Juan Pablo Gardella
Thanks Brian to share!! 2011/7/31 Brian Reilly brian.irei...@gmail.com As promised, I committed my gwt-multipage changes (to a branch) and attached a test jar (gwtmultipage-core-20110731.jar) to the issue: http://code.google.com/p/gwt-multipage/issues/detail?id=21. It's not an official

Re: GWT/GPE 2.4.0 RC1 is available

2011-07-31 Thread camerojo
Seeing that this new release involves new work in the area of cell based widgets, it might be a great opportunity to fix a nasty keyboard scrolling bug that I reported a few months back - see http://code.google.com/p/google-web-toolkit/issues/detail?id=6383 I have looked at the new source code

Re: GWT/GPE 2.4.0 RC1 is available

2011-07-31 Thread camerojo
Seeing that this new release involves new work in the area of cell based widgets, it might be a great opportunity to fix a nasty keyboard scrolling bug that I reported a few months back - see http://code.google.com/p/google-web-toolkit/issues/detail?id=6383 I have looked at the new source code