Re: Transition problem in useing AutoBean

2011-09-13 Thread Mauro Bertapelle
add gwt-servlet-deps.jar to your classpath On 13 Set, 12:31, jinker jiang jinkerji...@gmail.com wrote: I add this inherits name=com.google.web.bindery.autobean.AutoBean/ in my project gwt.xml -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: aaaarrrgh, them layout panels are driving me bonkers!!

2011-07-18 Thread Mauro Bertapelle
Don't forget to change RootPanel with RootLayoutPanel On 18 Lug, 17:08, Elhanan Maayan elh.mailg...@gmail.com wrote: if there's one thing haven't figured out completely it's the layouts, i mean, i wanna use the DockLayoutPanel in the ui designer for example with only 3 panels inside it (one

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread Mauro Bertapelle
The subject of setValue is not a list of acceptable values but the single item in the model data Use a ValueListBox, and in presenter call setAcceptableValues to fill list box before calling driver.edit On Jul 15, 7:48 am, vinayak kulkarni bkvina...@gmail.com wrote: Hi, Problem: How to use

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread Mauro Bertapelle
In View define a: HasConstrainedValue getMyListValueWidget(); in Presenter: view.getMyListValueWidget().setAcceptableValue(values); driver.edit(); On Jul 15, 11:16 am, vinayak kulkarni bkvina...@gmail.com wrote: I agree with you to call setAcceptableValue() before driver.edit But, i have a

Re: Resizing display regions in a complex ui

2011-07-12 Thread Mauro Bertapelle
you may find this thread interesting: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/ba4b88d2d54b0cd/97157d8e649c716e On Jul 12, 4:07 pm, Anders dr.kr...@gmail.com wrote: Thanks for the quick reply! Sounds like the DockPanelLayout is the way to go. In my little

Re: Removing ClickHandler from Button?

2011-07-05 Thread Mauro Bertapelle
use the HandlerRegistration returned from Button.addClickHandler On 5 Lug, 02:03, Milan Cvejic liquidbra...@gmail.com wrote: Yes, removeClickListener() is depricated, and that is why I am trying to find solution on how to remove ClickHandler. Just to explain my use case. I am same view with

Re: Activities does not get de-registered..

2011-06-30 Thread Mauro Bertapelle
Well, actually that is the cause of the problem. Just remove the click handler in the onStop and onCancel otherwise disposed activities will continue to receive click events -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: dynatablerf won't build

2011-06-27 Thread Mauro Bertapelle
Datagrid is not yet released, should be part of the upcoming 2.4 release AFAIK. Meanwhile you can find it in the trunk: http://code.google.com/p/google-web-toolkit/source/checkout -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: GWT 2.1 MVP Multiple activities clarification help

2011-06-24 Thread Mauro Bertapelle
There are a couple of bugs in my example related to the filtering/ caching of horizontal/vertical master activities: 1) the order between caching and filtering activity in CachingHorizontalMasterActivityMapper and CachingVerticalActivityMapper is wrong: public class

Re: Problems with filtering/ caching activities

2011-06-24 Thread Mauro Bertapelle
regarding caching/filtering of activity, there are some errors in my example that actually I realized just after posting the code back in dicember, but forgot to upload the fixes.. sorry :( take a look at:

Re: Problems with filtering/ caching activities

2011-06-24 Thread Mauro Bertapelle
perhaps this picture helps: http://goo.gl/vB5YN -- 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: Question about new activities on place changes

2011-06-24 Thread Mauro Bertapelle
On Jun 24, 4:44 pm, tanteanni tantea...@hotmail.com wrote: thx thomas for your never ending endurance, i guess i came a little closer after reading the source. Sorry for that: But what is the value of lastPlace and lastActivity after construction time? both null, of course.. And i miss

Re: Logging: Application doesn't get default log handlers

2011-05-06 Thread Mauro Bertapelle
http://code.google.com/p/google-web-toolkit/issues/detail?id=6171 -- 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: GWT 2.1 MVP Multiple activities clarification help

2011-02-23 Thread Mauro Bertapelle
Ernesto, CachingHorizontalMasterActivityMapper is just a wrapper for CachingActivityMapper and FilterActivityMapper. The layout of our example requires that both master and detail display regions are simultaneously visible. This means that when a user navigate to a detail place, even the master

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Mauro Bertapelle
Tried on various browsers and I definitely like this new theme. In my opinion: TextBox height is a little bit too much. TabLayoutPanel: I'm not convinced about new colors. SplitLayoutPanel: would reduce the tickness of split layout panel splittable bar and, only related to FF3 on Windows, would

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Mauro Bertapelle
-1 for me. Consistency between browsers is an important value to me, though I can understand your frustration with IE. On 17 Feb, 17:08, John LaBanca jlaba...@google.com wrote: Chrome, Safari, and Firefox support rounded corners natively in CSS.  How do you guys feel about using CSS rules to

Re: GWT love of HTML tables

2011-02-14 Thread Mauro Bertapelle
Have you looked at TabLayoutPanel ? http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiPanels.html -- 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

Re: GWT 2.1 MVP Multiple activities clarification help

2011-01-07 Thread Mauro Bertapelle
karthik, glad you find my example useful, but please consider it just a basic demonstration of the concepts expressed by Thomas in his article, far from being a complete implementation of an app based on the new Activity/Place model. As Thomas pointed out, MailListActivity need to be informed of

Re: DateTimeFormat problem with parsing

2010-12-28 Thread Mauro Bertapelle
From DateTimeFormat javadoc: *The time zone support for parsing is limited. Only standard GMT and RFC format are supported. Time zone specification using time zone id (like America/Los_Angeles), time zone names (like PST, Pacific Standard Time) are not supported* This are the timezone string

Re: Logging problem, please Help !

2010-12-27 Thread Mauro Bertapelle
First you need to supply a custom formatter. Look at com.google.gwt.logging.client.TextLogFormatter for a simple example or, this is an example of a formatter that format log message in a single line: public class CustomFormatter extends FormatterImpl { private boolean showStackTraces;

Re: GWT 2.1 MVP Multiple activities clarification help

2010-12-23 Thread Mauro Bertapelle
As an exercise I've build a little POC based on the concepts expressed by Thomas in his article. If someone is interested, the sources are here: http://95.110.143.4/layoutmvp/layoutmvp.tar.gz and here you can find a live demo: http://95.110.143.4/layoutmvp/layoutmvp.html -- You received this

Re: Is there a way to get have GWT not compile a method into JS?

2010-12-21 Thread Mauro Bertapelle
In the source tag of the module XML file you can specify the subpackage associated with the classes you want GWT to compile. You can even exclude some particular classes using a pattern based filter:

Re: How to display an ampersand using UiBinder?

2010-12-15 Thread Mauro Bertapelle
Label is not meant to contain html, use an HTML class instead: g:HTMLA amp; B/g:HTML -- 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-tool...@googlegroups.com. To unsubscribe from this group,

Re: GWT MVP How to change Page title upon Navigation (Place Change)

2010-12-03 Thread Mauro Bertapelle
use Document.setTitle() http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/dom/client/Document.html#setTitle(java.lang.String) -- 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: Sample App using DI/Gin, MVP, UiBinder, etc

2010-11-23 Thread Mauro Bertapelle
On 18 Nov, 16:38, Daghan dag...@gmail.com wrote: I am trying to figure out how to pass activityManager.setDisplay(composite) Implement AcceptOneWidget in your Composite, and in the setWidget method take care of inserting/removing the Activity's view in our Composite's receiving area -- You