Re: Google IO 2012 : no GWT session ?

2012-05-19 Thread kritic
Regardless of what the GWT team says, I do believe GWT as it is now will be phased out. Don't get me wrong, I think the features that GWT provides are second to none and the work put into it has been nothing short of impressive, but it has to be recognized that it is also becoming a rather

Re: Google IO 2012 : no GWT session ?

2012-05-19 Thread Giuseppe La Scaleia
I don't think this and for me java is the better programming language, so i hope that the google team give us a lot of new features for GWT. Regards Inviato da iPhone Il giorno 19/mag/2012, alle ore 09:34, kritic 10wattmindt...@gmail.com ha scritto: Regardless of what the GWT team says, I do

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-19 Thread Thomas Broyer
On Friday, May 18, 2012 11:37:20 PM UTC+2, JoseM wrote: So I am assuming I would do this on the client project right? I can't sem to get it to work though. No matter what settings I put for the war I get this message: [WARN] No startup URLs supplied and no plausible ones found -- use

GWT RPC + MySql

2012-05-19 Thread SCK
Hi I want to use GWT RPC to connect to my Database MySQL; Help me to find examples and doc about this. Thks -- 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: Google IO 2012 : no GWT session ?

2012-05-19 Thread Dimitrijević Ivan
https://developers.google.com/speed/tools On Friday, May 18, 2012 10:14:59 PM UTC+2, mihu wrote: It's ok, I am also interested in why there is no link from the main page of developers.google.com to the GWT pages for the new programmers easy to find it...? Michal W dniu czwartek, 17 maja

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-19 Thread JoseM
I didn't realize I had to still run the jetty server seperately before. I got it to work now running the jetty server using mvn jetty:start -Ddev and I just needed to right-click Run As Web Application (running on an external server) and supply the url (something like

Timing issue when using JSNI in gwt.

2012-05-19 Thread JoseM
You could use ScriptInjector to insert your external javascript file onto the Page. It has a callback that will be invoked once it has been loaded. You can also test to see if your $wnd.variable is undefined before trying to use it and if it is then use a timer or schedule deferred or

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-19 Thread Joseph Lust
Jose, I see that you're using the *mvn* commandline param. Why not use a built in Eclipse *run configuration*? While I have not used your exact configuration, I think you should be able to achieve it with something like the below using the

Re: Timing issue when using JSNI in gwt.

2012-05-19 Thread Joseph Lust
Ali, Script tags are blocking at loadhttps://developers.google.com/web-toolkit/doc/latest/DevGuideOrganizingProjects#DevGuideBootstrap. They have to be this way or you could never have JS lib dependencies since a dependency might not yet have been loaded when another script calls it. So, if

Re: gwt + templete

2012-05-19 Thread Joseph Lust
Assiya, Could you please clarify what you mean by template HTML? GWT has facilities for templated HTML: 1. UiBinderhttps://developers.google.com/web-toolkit/doc/latest/DevGuideUiBinderfor templates for Widgets (i.e. like a toolbar) and entire screens (i.e. like page layouts for a blog)

Re: gwt + templete

2012-05-19 Thread Assiya EL
Hi Joseph , thank you for your reply , but i don't work with uibinder , just a class with entry point any other solution ?? 2012/5/19 Joseph Lust lifeofl...@gmail.com Assiya, Could you please clarify what you mean by template HTML? GWT has facilities for templated HTML: 1.

Re: gwt + templete

2012-05-19 Thread Joseph Lust
Assiya, Getting started with UiBinder is quite simple and easy. I've found it far easier than the classic approach of separate CSS/HTML/JS files and trying to track everything through the DOM. What is your restriction against using UiBinder other than not yet having experience with it? You an

Re: gwt + templete

2012-05-19 Thread Assiya EL
I did not choose, the choice is imposed , I call on my entry point my classes witha my menu, my grid ... and I want to integrate a style for every page divided intopanel: header = menu, body = grid, footer = etc. it is clear ? 2012/5/19 Joseph Lust lifeofl...@gmail.com

Re: gwt + templete

2012-05-19 Thread Joseph Lust
Assiya, I see. Given the imposed restrictions, you can still do a lot as far as styling with CSSResources and ClientBundle. You could for example take the CSS and styles you'd like each page to have and place them in an archetype widget like *MyCustomPage. *Then your pages could extend this

Re: Timing issue when using JSNI in gwt.

2012-05-19 Thread Ali
Hi Joseph, Thank you for your reply. Having the browser version numbers in a javascript file available on the server is a requirement coming from product owner. They want to have it available even between the releases for possible changes by administrator. I tried putting the script tag for

Cannot add -localWorkers to GWT Compiler when using Eclipse?

2012-05-19 Thread Edson Richter
Hi, I've GWT 2.4.0 installed in Eclipse Indigo. Everything works fine, except that when I add -localWorkers 4 into compilation configuration, I get the error described below. Compiler options: -war war/secure -deploy ./deploy -extra ./extra -localWorkers 4 - strict Error during compilation:

Re: Cannot add -localWorkers to GWT Compiler when using Eclipse?

2012-05-19 Thread Edson Richter
Sorry for answering my own question. I've found that I need to add the following to my VM arguments: - Dgwt.jjs.permutationWorkerFactory=com.google.gwt.dev.ThreadedPermutationWorkerFactory Gain about 40% on compilation with 4 workers on 8 core machine ;-) Edson. On May 19, 7:53 pm, Edson

Re: Cannot add -localWorkers to GWT Compiler when using Eclipse?

2012-05-19 Thread Roger Studner
is thre any documentation out there, other than a really weak javadoc for the ThreadPermutationWorkerFactory that describes what this is/why it works (or doesn't) etc? Roger On May 19, 2012, at 7:01 PM, Edson Richter wrote: Sorry for answering my own question. I've found that I need to add

Re: Cannot add -localWorkers to GWT Compiler when using Eclipse?

2012-05-19 Thread Joseph Lust
LocalWorkers are also documented in the Maven-GWT-Plugin page: http://mojo.codehaus.org/gwt-maven-plugin/compile-mojo.html Joe -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Timing issue when using JSNI in gwt.

2012-05-19 Thread Joseph Lust
Ok, so I was ruminating over this one. I just modified the default web project to the code you supplied and it worked fine. Not sure what is different between my code and yours. The JSO class package com.testbrowser.client; import com.google.gwt.core.client.JavaScriptObject; public class

[gwt-contrib] Re: Fix issue 5658: PlaceHistoryGeneratorContext now examines PlaceTokenizers' hierarchy. (issue1674804)

2012-05-19 Thread t . broyer
https://gwt-code-reviews.appspot.com/1674804/diff/1/user/src/com/google/gwt/place/rebind/PlaceHistoryGeneratorContext.java File user/src/com/google/gwt/place/rebind/PlaceHistoryGeneratorContext.java (right):

[gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-05-19 Thread Thomas Broyer
On Friday, May 18, 2012 7:32:15 PM UTC+2, Brian Slesinsky wrote: On Thu, May 17, 2012 at 5:30 PM, t.bro...@gmail.com wrote: On 2012/05/17 22:52:23, skybrian wrote: (one of the difficulties is that the only way to get at properties of an AutoBean is to visit it, so I think we'd still

[gwt-contrib] Re: Issue 7038: CompositeEditor and ListEditor optimizations (issue1664803)

2012-05-19 Thread Thomas Broyer
On Friday, May 18, 2012 10:02:49 PM UTC+2, Brian Slesinsky wrote: On Thu, May 17, 2012 at 5:04 PM, t.bro...@gmail.com wrote: setValue() is part of the ValueAwareEditor contract (inherited through CompositeEditor); it's called by the Editor framework when you EditorDriver#edit() some