Re: GWT, servlet, JSP and datastore

2010-06-17 Thread Tristan Slominski
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 tristan.slomin...@gmail.com wrote: @kensai If you look at Google App Engine, the datastore is part of Google's free

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: History and server call.

2010-06-17 Thread Tristan Slominski
has returned) happy coding guys. Feel free to comment. Thanks, Ravi. On Jun 17, 1:45 pm, Tristan Slominski tristan.slomin...@gmail.com wrote: here's an example i wrote that walks through place service, hope that helps with place service c... 2010/6/17 Jaroslav Záruba

Re: layout problems with positioning or aligning content

2010-06-11 Thread Tristan Slominski
, if the user selects 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 tristan.slomin...@gmail.com wrote: What do you mean by dynamically generated? Are you

Re: layout problems with positioning or aligning content

2010-06-11 Thread Tristan Slominski
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 Slominski tristan.slomin...@gmail.com wrote: I don't understand how UiBinder cannot be used to do what you describe. You may have

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 archenr...@googlemail.comwrote: Hi Laurent, I am also new to GWT, also fascinated :-). I also already went trough samples and

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 alpineblas...@googlemail.com wrote: Hi fmod, I am thinking about your advice using UIbinder, but I think I cannot use it, because my layout

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: 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

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 t.bro...@gmail.com wrote: On 31 mai, 20:54, justint too_jus...@hotmail.com wrote: Hi, I'm fairly new to GWT and

Re: Feedback on Large scale app development MVP article

2010-06-03 Thread Tristan Slominski
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 t.bro...@gmail.com wrote: On 3 juin, 17:15, Tristan Slominski tristan.slomin...@gmail.com

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, Mark

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 gadaleta.ma...@gmail.com wrote: but if i want to use grid inside code, how can bind it with uibinder method? On 20