Re: Material Design with GWT(Polymer wrapper)

2016-11-20 Thread Dhinakar Reddy Pothireddi
Hi Blaze, I tried to use the GWT Polymer and I am getting the UI with no icons. This is my code public void onModuleLoad() { PaperButton button = new

Re: Problem with GWT 2.8

2016-11-20 Thread Kevin Langille
https://github.com/gwtproject/gwt/issues/9463 -- 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

Re: Problem with GWT 2.8

2016-11-20 Thread Colin Alworth
At least it is inconsistent with what the JVM would do, and appears to be different from what was seen in earlier versions of GWT. Can you file this at github.com/gwtproject/gwt/issues? On Sunday, November 20, 2016 at 5:35:44 PM UTC-6, Kevin Langille wrote: > > Thanks for the reply. > >

Re: Problem with GWT 2.8

2016-11-20 Thread Kevin Langille
Thanks for the reply. Compiling with pretty shows the issue. if (!(Math.abs(x - y) < 0.0001)) gets turned into if (Math.abs(x - y) >= 0.0001) So when Math.abs(x - y) results in NaN the if always results in false. In my mind this is a mistake because it doesn't accurately represent what is

Re: GWT Code Splitting: The GWT Stuff and My Core Java Classes

2016-11-20 Thread Kirill Prazdnikov
Kotlin JS is what you are asking for, it is a modular system. -- 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

Re: Payment gateway for an existing GWT application

2016-11-20 Thread Kirill Prazdnikov
> Can anyone point me to the right direction on how do I implement this? > Examples will be very beneficial. Thanks. > Try to understand JsInterop, and then you will easy link and use any JS lib with your app. -- You received this message because you are subscribed to the Google Groups

Re: Problem with GWT 2.8

2016-11-20 Thread Jens
> I am testing on Windows 10, Chrome, JDK 1.8.0_111. I also reproduced the > issue in Firefox, edge and IE11. > Compile your app for production but use -style PRETTY so you can better search in the final JS output. Then search the method name containing your failing code and compare the

Re: GWT Code Splitting: The GWT Stuff and My Core Java Classes

2016-11-20 Thread Jens
GWT only supports code splitting as described in http://www.gwtproject.org/doc/latest/DevGuideCodeSplitting.html Anything else is not possible. Also keep in mind that while GWT code splitting allows you to move code into a separate download, it does not mean that you can update that separate

Re: GWT Code Splitting: The GWT Stuff and My Core Java Classes

2016-11-20 Thread 'Darko P' via GWT Users
I have a very similar issue. Let say I want to have two modules - calculation - view Now I would like to have: - one big javascript file containing all arbitrary GWT related javascript code. let say GWT.js (which will be the biggest file, I assume somehow 400-500kByte of

Re: Browser.getWindow().newXMLHttpRequest()

2016-11-20 Thread Ignacio Baca Moreno-Torres
Did you fix it? It should work using 2.8.0, I just tested it again. If still not work, you better upload a project to github :). On Thursday, November 17, 2016 at 11:32:30 AM UTC+1, P.G.Taboada wrote: > > Thanks, this is what I was missing. > I tried to use elemental, but could neither find