GWT Desktop-Notification

2014-02-07 Thread Marcel K
Hey, after some coding with gwt i want to publish a component that i wrote. It's an api for desktop-notification and should work with Chrome, FF and Safari (according to https://developer.mozilla.org/en-US/docs/Web/API/notification#Browser_compatibility ). I would really appreciate if someone

Re: GWT 2.6.0 now available

2014-02-07 Thread stuckagain
Great news. I have a question on the included thirtparty products. I see that there is a guava version in there. Is this version impacted by the JDK 1.7.0 update 51 issue reported here: https://code.google.com/p/guava-libraries/issues/detail?id=1635 Maybe you are not using the features that

Re: GWT 2.6.0 now available

2014-02-07 Thread Thomas Broyer
On Friday, February 7, 2014 11:08:25 AM UTC+1, stuckagain wrote: Great news. I have a question on the included thirtparty products. I see that there is a guava version in there. Is this version impacted by the JDK 1.7.0 update 51 issue reported here:

Re: Introducing GWT-Tour 0.1

2014-02-07 Thread Doug Stoddart
as promised, a video of a gwt-tour implementation in my web app. http://youtu.be/cqUg3b7x4ew It's subscription only access so you can't access the web app, but background website is here: www.bikerentalmanager.com thanks again Alain, Doug On 24 January 2014 09:57, doright

Re: GWT Menu Bar Sub-Menus - how to open on left hand side?

2014-02-07 Thread Patrick Tucker
Follow this issue and check out the code review and see if it fixes your problem: http://code.google.com/p/google-web-toolkit/issues/detail?id=3888 On Thursday, February 6, 2014 1:49:35 PM UTC-5, BM wrote: So I have a menu bar on right hand side of the screen. This menu bar as vertical

Re: GWT Desktop-Notification

2014-02-07 Thread antw...@gmail.com
Marcel that is cool interesting We'll give it a go once time allows... Why don't you post some screenshots or deploy a sample web app ( on appspot.com ) so that people can see it in action ? Antonis On Friday, 7 February 2014 08:26:29 UTC, Marcel K wrote: Hey, after some coding with gwt i

Re: JSONSplittable#setSize() fails if new size is bigger than existing size

2014-02-07 Thread Andreas Kohn
Hi, I filed https://code.google.com/p/google-web-toolkit/issues/detail?id=8563for it, with a patch at https://gwt-review.googlesource.com/#/c/6330/ Regards, -- Andreas On Wed, Feb 5, 2014 at 2:33 PM, Thomas Broyer t.bro...@gmail.com wrote: Splittable is supposed to represent any JavaScript

Re: GWT Desktop-Notification

2014-02-07 Thread Marcel K
Here you are. http://gwtnotification.appspot.com/ Marcel -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com.

Re: How to fix the Column Ordering issue when Insert and Remove columns in GWT?

2014-02-07 Thread Thomas Broyer
Sure, the index to insert at is the original minus the number of hidden columns before it; or put differently, the number of visible columns before it. In any case, it means tracking the visible state of your columns. You could use an array of booleans representing the visible state of your

java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Davide Micheletti
Like title i've these error in run-mode on a tomcat server.. I've found some solution googling it but i don't want to import any .jar lib if it possible. So, what can i do? Thanks Davide.. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Thomas Broyer
What's the stacktrace? Which class/method are you using that causes that error? On Friday, February 7, 2014 4:56:30 PM UTC+1, Davide Micheletti wrote: Like title i've these error in run-mode on a tomcat server.. I've found some solution googling it but i don't want to import any .jar lib if

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Davide Micheletti
SimpleDateFormat however here the log: org.apache.catalina.core.ApplicationContext.log Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract com.pannelli.controllo.shared.Ciclo_Produzione

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Thomas Broyer
If you do use SimpleDateFormat from ICU (com.ibm.icu.text.SimpleDateFormat, as opposed to java.text.SimpleDateFormat), then you have to ship it within your WAR. Out of curiosity, what's at

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Davide Micheletti
com.pannelli.controllo.server.GreetingServiceImpl.SQL_fasi_c iclo_per_tipologia(GreetingServiceImpl.java:707) com.pannelli.controllo.server is the package of the server GreetingServiceImpl is the java class for the server SQL_fasi_ciclo_per_tipologia(GreetingServiceImpl.java:707) is a function on

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Jens
com.pannelli.controllo.server.GreetingServiceImpl.SQL_fasi_c iclo_per_tipologia(GreetingServiceImpl.java:707) com.pannelli.controllo.server is the package of the server GreetingServiceImpl is the java class for the server SQL_fasi_ciclo_per_tipologia(GreetingServiceImpl.java:707) is a

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Davide Micheletti
ok thanks.. i'll try your solution.. However sorry for my stupid questions but i'm a newby on GWT and java.. ;) The source Code at line 707 is something like this: SimpleDateFormat df = new SimpleDateFormat(dd/MM/); String data = 04/02/2014; Date d = df.parse(data); ... On Fri, Feb 7, 2014

How to fix the Column Ordering issue when Insert and Remove columns in GWT?

2014-02-07 Thread Tom
I have a cellTable that has many columns like the followings: OrderID - OrderDate - OrderTime - Name . 1 - 2012-01-05 - 11:12:12 - Tom.. Each column will have a checkBox for Hide/Unhide column: [x] orderID (CheckBox) [x] orderDate (CheckBox) [x] orderTime (CheckBox) ..

Why is Firefox ia Better Dev Env for GWT than Chrome

2014-02-07 Thread Charles Nelson
I'm developing GWT apps and Firefox v26 almost never crashes while Chrome *ALWAYS *crashes shortly after the app is launched. Why is that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: Why is Firefox ia Better Dev Env for GWT than Chrome

2014-02-07 Thread Juan Pablo Gardella
What does chrome show in the console? 2014-02-07 Charles Nelson silkyhotli...@gmail.com: I'm developing GWT apps and Firefox v26 almost never crashes while Chrome *ALWAYS *crashes shortly after the app is launched. Why is that? -- You received this message because you are subscribed to

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Davide Micheletti
Ok now there is another error.. Now for CalendarUtil.addDaysToDate() i think... SOURCE CODE: SimpleDateFormat formatter = new SimpleDateFormat(dd/MM/); Date end_date = formatter.parse(prima_data); CalendarUtil.addDaysToDate(end_date, 5); String ultima_data = formatter.format(end_date);

Re: Why is Firefox ia Better Dev Env for GWT than Chrome

2014-02-07 Thread Charles Nelson
Also I'm developing on anOkay. I'm using GGTS as my IDE and I'm launching and monitoring the app from GGTS. The development console shows the following stack trace, 11:39:53.787 [ERROR] [App_Name] Remote connection lost com.google.gwt.dev.shell.BrowserChannel$RemoteDeathError: Remote connection

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Jens
CalendarUtil is a GWT class that can not be used on the server. Use java.util.Calendar or JodaTime library. You can avoid these issues by not blindly use classes available in Eclipse/IntelliJ. Only classes from jar files in war/WEB-INF/lib are available on the server. -- J. -- You received

Re: java.lang.Exception' threw an unexpected exception: java.lang.NoClassDefFoundError: com/ibm/icu/text/SimpleDateFormat

2014-02-07 Thread Davide Micheletti
ok.. Thanks.. On Fri, Feb 7, 2014 at 9:10 PM, Jens jens.nehlme...@gmail.com wrote: CalendarUtil is a GWT class that can not be used on the server. Use java.util.Calendar or JodaTime library. You can avoid these issues by not blindly use classes available in Eclipse/IntelliJ. Only classes

Re: Why is Firefox ia Better Dev Env for GWT than Chrome

2014-02-07 Thread Charles Nelson
Okay. I'm using GGTS as my IDE and I'm launching and monitoring the app from GGTS. The development console shows the following stack trace, 11:39:53.787 [ERROR] [App_Name] Remote connection lost com.google.gwt.dev.shell. BrowserChannel$RemoteDeathError: Remote connection lost at

Re: Development Mode will not be supported in Firefox 27+

2014-02-07 Thread Ed
Usage example of the chrome debugger (not as part of the Chrome browser): Wienre: http://people.apache.org/~pmuellr/weinre/docs/latest/ (A very nice tool btw for controlling your DOM on a mobile device) -- You received this message because you are subscribed to the Google Groups Google Web

gwt 2.6 SuperDevMode and injected css problem

2014-02-07 Thread Vassilis Virvilis
Helo everybody, I have enabled super dev mode and it works ok in chrome but fails in firefox and internet explorer. More specifically I added set-configuration-property name=devModeRedirectEnabled value=true / add-linker name=xsiframe / set-property

Help to create Lightweight widgets

2014-02-07 Thread Axel R
Hi, I know there is a lot of doc in the web, but I cannot understand well many things...please feel free to help me: #1 Does addClickListener() and addClickHandler() does the exact same thing (listener is just deprecated) ? #2 I have created the following widget: public class

Re: gwt 2.6 SuperDevMode and injected css problem

2014-02-07 Thread Colin Alworth
Can you confirm that you are hitting the Compile button in each browser and that the SDM console is indicating that it is recompiling for each other user agent? It sounds as though you might be compiling when you start up one browser, then just turning dev mode on without recompiling in other

Re: asm.js support?

2014-02-07 Thread Colin Alworth
There have been a few quick discussions about this in ##gwt on irc, and while I think we probably need to both move this to -contrib before much longer but also get some of the compiler experts involved, I suspect this is going to end up being a specific tool to optimize sufficiently c-like

Re: GWT Desktop-Notification

2014-02-07 Thread JoyaleXandre
Really interesting. I'll see what I can do with it in our project. Thanks! :-) On Friday, February 7, 2014 10:23:40 AM UTC-5, Marcel K wrote: Here you are. http://gwtnotification.appspot.com/ Marcel -- You received this message because you are subscribed to the Google Groups Google

[gwt-contrib] GWT + Maven - Using gwt-dev package as dependency

2014-02-07 Thread Gilberto Torrezan Filho
Hi, I'm using GWT 2.6.0 with Maven, using the gwt-maven-plugin, and in my project I have some auto generated classes (using the generated-with directive on Module.gwt.xml). The generator is a subclass of com.google.gwt.core.ext.Generator. The problem is: every time I build my project, Maven

[gwt-contrib] Re: GWT + Maven - Using gwt-dev package as dependency

2014-02-07 Thread Colin Alworth
If you know enough to start writing generators, it almost certainly is not a concern - you are probably also careful with which GWT version you are using as well as which gwt-m-p version. A problem can occur if more than one version of gwt-dev is present on the classpath, such as a mistakenly