Install GWT Eclipse Plugin from behind a firewall?

2016-01-12 Thread Magnus
Hello, I cannot install the GWT eclipse plugin from behind a corporate firewall. The update site (https://dl.google.com/eclipse/plugin/4.4) is not available. When I try to open it in a browser, I get a HTTP 403 (forbidden) error. I found that you can install it from a zip archive:

Re: GWT 3.0 Question

2016-01-12 Thread Frank Hossfeld
Even if GWT 3.0 does not contain a widget set, companies like Sencha will do: https://www.sencha.com/forum/showthread.php?306057-GWT-3.0-Sencha-GXT-and-the-future-of-the-widget-eco-system- Am Montag, 11. Januar 2016 16:13:58 UTC+1 schrieb Eric Nissan: > > I keep reading that GWT 3.0 will

gwt 2.7.0 - superdevmode serialization is different than compiled serialization

2016-01-12 Thread Juan Pablo Gardella
Hi folks, Do you know why guava multimap could be serialized with superdevmode? I found a problem with a gwt compiled application but it didin't happen with superdevmode. I serialized a multimap using gwt-rpc and it worked for superdevmode, but no using the compiled application. Any thought?

Re: How to avoid rounding problems when working with doubles

2016-01-12 Thread Jens
Well that behavior is normal when working with floats / doubles, thats not GWT nor browser related. Computers simply can not represent all floating point numbers accurately internally. See: http://floating-point-gui.de So your solutions are: - Use NumberFormat / Math.round to display the

Re: Click even on outer HTMLPanel on existing html ?

2016-01-12 Thread Ed
Please some advice on this issue ? -- 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 google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send

How to avoid rounding problems when working with doubles

2016-01-12 Thread Frank
Javascript has some serious problems when working with floating numbers. Like if you enter the following into a javascript in any browser : 7.3 - 7 These will all give the result : 0.2998 This problems is also visible in GWT : int test = 7; double dTest = 7.3; double result =

Re: How to avoid rounding problems when working with doubles

2016-01-12 Thread Stefan Bylund
Try BigDecimal if you need precision. /Stefan Den tisdag 12 januari 2016 kl. 12:28:31 UTC+1 skrev Frank: > > Javascript has some serious problems when working with floating numbers. > > Like if you enter the following into a javascript in any browser : 7.3 - 7 > These will all give the result :

Re: How to avoid rounding problems when working with doubles

2016-01-12 Thread Kirill Prazdnikov
Hi Javascript has some serious problems when working with floating numbers. > Javascript has no serious problems when working with floating numbers > Like if you enter the following into a javascript in any browser : 7.3 - 7 > There is not such number 7.3 in floating point. > These will

Re: GWT 3.0 Question

2016-01-12 Thread Kirill Prazdnikov
понедельник, 11 января 2016 г., 18:13:58 UTC+3 пользователь Eric Nissan написал: > > I keep reading that GWT 3.0 will not have uibinder or widgets. I don't > understand what that means for future versions > No one knows the future. > Will all my existing code that uses uiBinder, and all

Re: GWT Desktop-Notification

2016-01-12 Thread confile
@Marcel There are two things missing in you GWT project: 1. How do you set the duration the notification is shown? 2. How do you get the notification id from a click on the notification to make a proper redirect? Am Freitag, 7. Februar 2014 09:26:29 UTC+1 schrieb Marcel K: > > Hey, > > after

Re: Maven can't load gwt-maven-plugin:2.8.0-SNAPSHOT

2016-01-12 Thread Bruno Salmon
Yes but I thought it was not coming from our Jenkin server because it has no other connectivity problem than this one. However I finally noticed that repo.maven.apache.org is not correctly resolved (the IP is wrong for any strange reason) so the problem is finally from our server side. Sorry

Re: How to avoid rounding problems when working with doubles

2016-01-12 Thread Jim Douglas
Google the general question of why you should never use binary floating point (double or float) for currency calculations. e.g.: http://stackoverflow.com/questions/3730019/why-not-use-double-or-float-to-represent-currency On Tuesday, January 12, 2016 at 3:28:31 AM UTC-8, Frank wrote: > >