Re: History and server call.

2010-06-17 Thread Tristan Slominski
andler will be called in async was as if server has returned) happy coding guys. Feel free to comment. Thanks, Ravi. On Jun 17, 1:45 pm, Tristan Slominski wrote: > here's an example i wrote that walks through place service, hope that helps > with place service c... >

Re: History and server call.

2010-06-17 Thread Tristan Slominski
here's an example i wrote that walks through place service, hope that helps with place service concepts. note that I got feedback that two types of place events that i implemented here are not necessary and that one would be sufficient, but i haven't had the time to refactor yet. it should however

Re: GWT, servlet, JSP and datastore

2010-06-17 Thread Tristan Slominski
t, so in our case there is > no possibility of using online google app engine, altough I already > tried to use it and it worked well. > > Thank you > > > On 9 čvn, 18:32, Tristan Slominski > wrote: > > @kensai > > > > If you look at Google App Engine, the d

Re: layout problems with positioning or aligning content

2010-06-11 Thread Tristan Slominski
gt; your example does not work for me. > > > > This means AFAIK that the content of the VerticalPanel are aligned > within the VerticalPanel, but not the VerticalPanel itself. > Also it does not align vertically... > > Magnus > > > On 11 Jun., 09:40, Tristan Slomins

Re: layout problems with positioning or aligning content

2010-06-11 Thread Tristan Slominski
ts "create account", a form should be > shown to enter the data for a new account. > > And I would like the form to be centered within the middle space... > > Magnus > > On Jun 8, 5:48 pm, Tristan Slominski > wrote: > > What do you mean by "dynamically

Re: GWT, servlet, JSP and datastore

2010-06-09 Thread Tristan Slominski
@kensai If you look at Google App Engine, the datastore is part of Google's free-to-start cloud hosting service. On Wed, Jun 9, 2010 at 02:56, kensai yanesha wrote: > Hi Laurent, > > I am also new to GWT, also fascinated :-). I also already went trough > samples and tutorials and well stopped at

Re: layout problems with positioning or aligning content

2010-06-08 Thread Tristan Slominski
What do you mean by "dynamically generated"? Are you setting styles and widths programmatically? What's the use case? On Tue, Jun 8, 2010 at 10:45, Magnus wrote: > Hi fmod, > > I am thinking about your advice using UIbinder, but I think I cannot > use it, because my layout is dynamically generat

Re: Feedback on "Large scale app development MVP article"

2010-06-03 Thread Tristan Slominski
y to things.. ok, let's tie my data directly to JPA representation on the server... and viola, I have a datastore viewer in GWT. Sort of missing the point of a rich web application I think. On Thu, Jun 3, 2010 at 10:53, Thomas Broyer wrote: > > > On 3 juin, 17:15, Tristan Slominski

Re: How to add new event to HandlerManager

2010-06-03 Thread Tristan Slominski
@Thomas haha... wow... now looking at it in the morning i see what you're pointing out. I didn't even realize it was KeyPressEvent :) On Thu, Jun 3, 2010 at 09:39, Thomas Broyer wrote: > > > On 31 mai, 20:54, justint wrote: > > Hi, I'm fairly new to GWT and I'm trying to add events to my > >

Re: Feedback on "Large scale app development MVP article"

2010-06-03 Thread Tristan Slominski
i think at this point we should all probably see http://code.google.com/events/io/2010/sessions/architecting-production-gwt.html and see what they're trying to do there. Seems like Google decided the MVP approach is obsolete, which might muddle the issue. On Thu, Jun 3, 2010 at 09:26, Thomas Bro

Re: GWT Design Problem

2010-06-03 Thread Tristan Slominski
I for one don't want to write any more xml in my life than I have to. I prefer my history service written in Java with auto completion, etc... that's why I use Guice over other DI frameworks. I think your argument is for declarative history service, which I could get behind. But the particular xml

Re: Share access beween two UiBinder files?

2010-05-28 Thread Tristan Slominski
Hmm... Why don't you do it in main? It's the one thing that knows about both. Buttons.java: @UiHandler("nextButton") void onClickNext(ClickEvent click) { getMain().onClickNext(); } Main.java: public void onClickNext(){ getTextFields.setText("something"); } On Fri, May 28, 2010 at 10:19, M

Re: Grid uibinder

2010-03-24 Thread Tristan Slominski
Same as other widgets. @UiField Grid myGrid; or @UiField(provided = true) Grid myGrid = new Grid(1,1); Depending on what you're doing. On Mar 22, 2010 9:50 AM, "gadaleta.marco" wrote: but if i want to use grid inside code, how can bind it with uibinder method? On 20 Mar, 18:33, Tristan wro