Re: Codeserver and JsInterop

2015-10-14 Thread Cristiano
Yes, true! Thank you for the suggestion! ;-) BUILD SUCCESSFUL Total time: 2 minutes 22 seconds real 2m23.351s user 3m59.573s sys 0m22.522s Il giorno mercoledì 14 ottobre 2015 08:30:30 UTC+2, Jens ha scritto: > > > 6 minutes and half on my SSD based Quad core i7: >> >> >> Handwritten:gwt-trun

Re: (GWT + GAE) vs. (GWT + Java + MySQL)

2015-10-14 Thread Gilberto
Wow, the original post is from 2008, when GAE even didn't support Java yet... Totally out of the context nowadays. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: GWT and GA and analytics.js usage ?

2015-10-14 Thread Gilberto
I'm using the universal-analytics package from ArcBees on my gwt-views project, and in my experience you can avoid most of the gin part if you want, by calling the classes directly, or by isolating

Re: GWT and GA and analytics.js usage ?

2015-10-14 Thread Alain Ekambi
We have a wrappaer around boba.js (http://boba.space150.com/) which wraps both api. I will see if we can opensource it. On 13 October 2015 at 09:25, Ed wrote: > Anybody knows any good simple GWT wrappers around (newer) Google Analytics > "analytics.js" (Google Analytics Universal)? > I noticed

Re: Is it possible to add an extra loglevel in GWT

2015-10-14 Thread Frank
A valid reason is : "Because the client asked" :-) I managed to sort this out for myself. In case anyone is interested in this. What you have to do is create a "super" directory. This on the same level as the "client" directory of your module. In this directory you create a java.util.logging

Re: Multiple cell Renderers (or composite cells with UiRenderer/UiHandler)

2015-10-14 Thread Drew Spencer
Thanks for getting back to me. It's funny you say widgets have fallen out of favour... I have heard that improvements in modern browsers may be making them redundant as they can manipulate the DOM much faster than older ones (which removes the benefit of setting innerHTML as one giant string),

Re: how to connect to CORBA

2015-10-14 Thread Maarten Franssen
thanks for suggestion wth XHR! might be feasible brgds Maarten Op dinsdag 13 oktober 2015 21:29:01 UTC+2 schreef jlm: > > You have an ORB running on every client? Wow! Discussing HTML5 and > AngularJS and CORBA in the same paragraph seems pretty anachronistic. > > If the ORB is actually running

Re: Is it possible to add an extra loglevel in GWT

2015-10-14 Thread Jens
> Say I want an extra level between SEVERE (1000), and warning (900) --> > ERROR (950). > > How can I achieve this ? > You would need to patch GWTs java.util.logging emulation to support that. If you just want to do it for one project then you can probably copy the emulated files of GWT into

Re: Welcome page

2015-10-14 Thread NewbieGwtUser
Actually I'm using the mvp4g framework. Le mercredi 14 octobre 2015 12:10:15 UTC+2, Thomas Broyer a écrit : > > What kind of framework/library is this using? Where do those @Event, > @Events, and @Start come from? (you may have better chances in the forum > for this framework/library) > > On Wed

Re: Welcome page

2015-10-14 Thread Thomas Broyer
What kind of framework/library is this using? Where do those @Event, @Events, and @Start come from? (you may have better chances in the forum for this framework/library) On Wednesday, October 14, 2015 at 11:22:28 AM UTC+2, NewbieGwtUser wrote: > > Hi ! > > I have in my project a RootView and a H

Is it possible to add an extra loglevel in GWT

2015-10-14 Thread Frank
In normal Java it is pretty easy to add your own custom loglevels. But all the Java ways I know don't work in GWT because GWT has its own implementation of java.util.logging.Level. Say I want an extra level between SEVERE (1000), and warning (900) --> ERROR (950). How can I achieve this ? --

Welcome page

2015-10-14 Thread NewbieGwtUser
Hi ! I have in my project a RootView and a HomeView, this latter will be displayed inside the main Container of the RootView but only with clicking on the HomeButton. Now I want to get the HomeView displayed inside the RootView at the first browser loading. I tried to add in my MainEventBus in

Re: Convert UTF-8 to windows-1252 and write into csv in gwt 2.7.0 on tomcat v7

2015-10-14 Thread balyndar1
There are no japanese characters in Cp-1252, so this will never work. I think this is the input I was missing. I thought the developer that gave the order had investigated this. Thank you for this comment! The other comments are also very helpfull, thank you for your knowledge! -- You receiv

Re: Removing the SuperDevMode code server prompt

2015-10-14 Thread 'steve Zara' via GWT Users
I'm using the Netbeans GWT plugin. On 14 October 2015 at 08:20, Thomas Broyer wrote: > One question remains unanswered: how are you launching SDM / loading the > page that you're facing this dialog box? > > IIRC, the reason it doesn't automatically reloads is to avoid hiding the > fact that the

Re: Removing the SuperDevMode code server prompt

2015-10-14 Thread Thomas Broyer
One question remains unanswered: how are you launching SDM / loading the page that you're facing this dialog box? IIRC, the reason it doesn't automatically reloads is to avoid hiding the fact that the CodeServer isn't running at all (and you'd wait forever). I'd suggest deep-diving in the commi