Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Alisson Prestes
The FooActivity extracts the arguments from the FooPlace. Then it calls the right method in the FooView. Place and View do not interact with each other directly. Alisson Prestes www.google.com/profiles/javalisson On Thu, Oct 6, 2011 at 2:17 PM, Mike Dee mdichiapp...@gmail.com wrote: I'm

Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Alisson Prestes
Yes, I think this will work. Alisson Prestes www.google.com/profiles/javalisson On Thu, Oct 6, 2011 at 2:48 PM, Mike Dee mdichiapp...@gmail.com wrote: Would the call to set the arg in the view go in FooActivity.start()? On Oct 6, 10:46 am, Mike Dee mdichiapp...@gmail.com wrote: So

Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Alisson Prestes
is not null in the start method and call the appropriated method of the view. Alisson Prestes www.google.com/profiles/javalisson On Thu, Oct 6, 2011 at 3:00 PM, Mike Dee mdichiapp...@gmail.com wrote: FooActivity.start() looks like this. Note that while it can get FooView from the clientfactory

Re: UiBinder

2011-09-26 Thread Alisson Prestes
You're not using the xml namespace prefix. tdg:Button ui:field=button //td tdg:Image ui:field=image //td http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Simple_binding Alisson Prestes www.google.com/profiles/javalisson On Mon, Sep 26, 2011 at 12:27 PM, Daniel Gerep

Re: HTML

2011-09-22 Thread Alisson Prestes
/webtoolkit/doc/latest/DevGuideCodeSplitting.html Alisson Prestes www.google.com/profiles/javalisson On Thu, Sep 22, 2011 at 8:36 AM, Daniel Gerep daniel.ge...@gmail.comwrote: Hi fellas, I'm new to GWT and I'm liking it a loot but there is a doubt; I know that GWT only work with one HTML

Re: Error with Quartz

2011-09-21 Thread Alisson Prestes
from another place, i.e., from another app that does not use GWT? Alisson Prestes www.google.com/profiles/javalisson On Wed, Sep 21, 2011 at 9:16 AM, andre_guitar7 andreg...@gmail.com wrote: I'm trying to work GWT with Quartz, but gives an error: Caused by: java.security.AccessControlException

Re: What about non Javascript sites?

2011-09-08 Thread Alisson Prestes
I heard (and someone here could confirm it or not) that Closure Templates, another tool developed by Google, has the ability to generate the same page either in server side or client side. Does anybody know if it is possible to integrate it with GWT? Alisson Prestes www.google.com/profiles

GDDBR11

2011-09-01 Thread Alisson Prestes
Hi, Is anybody from this list coming to Google Developer Day Brazil this year? Alisson Prestes www.google.com/profiles/javalisson -- 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

Re: Does GWT has any framework or class or something for accessibility (especially for client side )

2011-08-02 Thread Alisson Prestes
ARIA Roles? Alisson Prestes www.google.com/profiles/javalisson On Tue, Aug 2, 2011 at 4:28 PM, Ben Munge ben.mu...@gmail.com wrote: I'm not sure what you mean exactly. Accessibility is driven much more by the content and construction of your pages. A framework cannot make assumptions about

Re: Lots of DIVs

2011-07-29 Thread Alisson Prestes
Very smart :) Alisson Prestes www.google.com/profiles/javalisson On Thu, Jul 28, 2011 at 4:30 PM, Thomas Broyer t.bro...@gmail.com wrote: First, as soon as you use a layout panel, it adds a div to the document's body, using it as a ruler to measure centimeters in pixels (this is the very

Re: Declar~á´â´â´ .´´ e an array of panels in UiBindera

2011-07-25 Thread Alisson Prestes
options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- Alisson Prestes www.google.com/profiles/javalisson -- 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

Re: Declar~ á´â´â´ .´´ e an array of panels in UiBindera

2011-07-25 Thread Alisson Prestes
I'm sorry, my smartphone was in my pocket and I accidentally sent this nonsense message to the group :$ Alisson Prestes www.google.com/profiles/javalisson On Mon, Jul 25, 2011 at 9:50 AM, Alisson Prestes javalis...@gmail.comwrote: On 7/25/11, Alexander Orlov alexander.or...@loxal.net wrote

Re: Request Builder

2011-07-03 Thread Alisson Prestes
on the size of your application, you may wish to use Activities and Places to keep everything organized: http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html If your question is about a more specific topic, please supply more details. Alisson Prestes www.google.com

Re: Annoncing GWT Brasil

2011-07-01 Thread Alisson Prestes
Thanks, we will be there! :) Alisson Prestes www.google.com/profiles/javalisson On Fri, Jul 1, 2011 at 4:06 PM, Magno Machado magn...@gmail.com wrote: I founded a forum dedicated for brazilian GWT developers, and would like to invite any one here who speak portuguese to participate

Re: .setVisible(true); // I can't see what I am missing

2011-06-27 Thread Alisson Prestes
The CSS attribute that you must declare is display instead of visibility. This is the attribute that the setVisible method affects. #ButtonContainer { display: none; } Alisson Prestes www.google.com/profiles/javalisson On Mon, Jun 27, 2011 at 9:55 PM, RRRaney rrrsyst...@gmail.com wrote

Re: Maintaining application state

2011-06-10 Thread Alisson Prestes
I am storing the information in the Client Factory. Alisson Prestes www.google.com/profiles/javalisson On Fri, Jun 10, 2011 at 4:00 PM, Ashton Thomas ash...@acrinta.com wrote: I do something kinda similar. I make the assumption that a Place object should store all the state/data

Re: MVP pattern uncaught exception

2011-05-24 Thread Alisson Prestes
(ClientFactoryImpl.java:37) at com.rourevell.booking.client.activity.ControlPanelActivity.start(ControlPanelActivity.java:21) ... It seems that you tried to acess a variable without checking if it's null and got this error. Did you initialize the variable? Alisson Prestes www.google.com/profiles/javalisson On Tue

Re: GWT and Developing UI

2011-05-23 Thread Alisson Prestes
For 1 and 2 I would use a FlowPanel and some CSS. Alisson Prestes www.google.com/profiles/javalisson On Mon, May 23, 2011 at 4:49 PM, Ash ashwani...@gmail.com wrote: Some insights would be definitely helpful. On May 22, 12:28 am, Ash ashwani...@gmail.com wrote: We have a application

Re: How to learn use GWT

2011-05-20 Thread Alisson Prestes
) and as Ryan said before, Google I/O 2009 - Best Practices for Architecting GWT App ( http://www.youtube.com/watch?v=PDuhR18-EdM). and Google I/O 2010 - Architecting GWT apps (http://www.youtube.com/watch?v=M5x6E6ze1x8). Alisson Prestes www.google.com/profiles/javalisson On Fri, May 20, 2011 at 6

Re: Creating a Dialog Box that Returns Data to its Caller

2011-05-14 Thread Alisson Prestes
a custom event handler that handles this custom event. Inside the event handler, set the data from the event to your variable. Creating the custom event and the custom event handler takes some effort, but I think it's worth the effort. Alisson Prestes www.google.com/profiles/javalisson On Fri

Re: Where to store global (application) variables?

2011-05-04 Thread Alisson Prestes
I use ClientFactory for storing data about the user, but it's not sensitive data. If your data is sensitive, I don't if this is the best option. Alisson Prestes www.google.com/profiles/javalisson On Wed, May 4, 2011 at 7:28 PM, Brandon Donnelson branflake2...@gmail.comwrote: I make a widget

Re: GWT - Capture values of dynamically created components

2011-05-02 Thread Alisson Prestes
with a class attribute called index. Each hyperlink will have a single index and this is the way it will tell your application which of the groups has been altered I think this is simple to implement and will solve your problem. Alisson Prestes www.google.com/profiles/javalisson On Mon, May 2