Re: JsInterop and Function.prototype.apply 'this' argument

2017-05-24 Thread Vassilis Virvilis
Hi, I also had this problem. Seems that it was not possible back then (October 2016). I don't believe it is possible now. Here is my jsni workaround in case you find something useful https://groups.google.com/forum/#!topic/google-web-toolkit/Holpz8_ERD8 Vassilis On Wed, May 24, 2017 at 10:

Code not working fine with IE11

2017-05-24 Thread Kirill Prazdnikov
default permutation for Chrome (safari) works perfectly for us under all browsers (FF, EDGE, Chrome, Safari) -- 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

Re: Code not working fine with IE11

2017-05-24 Thread Thomas Broyer
On Wednesday, May 24, 2017 at 6:00:20 PM UTC+2, Keshav Agarwal wrote: > > I have write code using GWT 2.6.1 and jdk1.5. It's working fine in > Internet Explorer 5, 6 but it's throwing error in IE11 that 'attachEvent' > object or method not found. When I search in code, then I found that > cach

Code not working fine with IE11

2017-05-24 Thread Keshav Agarwal
I have write code using GWT 2.6.1 and jdk1.5. It's working fine in Internet Explorer 5, 6 but it's throwing error in IE11 that 'attachEvent' object or method not found. When I search in code, then I found that cache.html files contains attach event. And attach event not supported by IE11. What

JsInterop and Function.prototype.apply 'this' argument

2017-05-24 Thread Daniel Kaneider
Hi, as you probably know, in plain JS methods like apply or call allow you to pass any object for "this". Now, some JS libraries provide methods where you can pass some callback function, which is performed after some operation has finished. Some libraries choose to pass some special object fo