Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-28 Thread Dhinakar Reddy Pothireddi
Sorry Ed, I didn't work and even this is not what I need. I want to access the clipboard in the Chrome with some appropriate JSNI. The code I posted previously works for IE but fails on Chrome. Thanks. On Monday, March 21, 2016 at 7:48:50 PM UTC+5:30, Ed wrote: > > Hi, > > Try this: >

Re: GWT Embedded in other GWT App

2016-03-28 Thread miguelangel . demiguel
Thomas thanks for the info. I was not using 2.7 because I use WindowsBuilder and 2.7 is not supported. I'll try to combine both versions. Cheers, Miguel On Monday, 28 March 2016 12:53:12 UTC+2, Thomas Broyer wrote: > > This is a known issue: https://github.com/gwtproject/gwt/issues/4468 > >

How can I set the parent of an Element?

2016-03-28 Thread Stefan Falk
I am "injecting" HTML code into a contenteditable . Since any content there could potentially be removed with e.g. BACKSPACE, I want to know when this elements are getting detached in order to remove the whole panel from the parent contenteditable div. However, these events don't seem to work.

Re: Missing class names in superdevmode

2016-03-28 Thread Jens
It's expected behavior in GWT 2.8. When starting DevMode there should be a console output saying "Starting CodeServer with parameters " so you can see how the SDM CodeServer is launched. It should contain -style OBF for obfuscated JS along with -XmethodNameDisplayMode. I think the primary

Re: Missing class names in superdevmode

2016-03-28 Thread 'Klemens Schrage' via GWT Users
Does nobody have this problem? Or am I the only one, who's interested in the actual class being used (especially in polymorphism cases). I would like to maximize my productivity in a newly started project. Best regards Klemens Am Freitag, 18. März 2016 07:33:12 UTC+1 schrieb Klemens Schrage: >

Re: Differences between permutations

2016-03-28 Thread Colin Alworth
If you only set one possible permutation, your .nocache.js won't attempt to detect which browser is running, and will always use that one. Only if there is more than one possible value will it attempt to find out which is appropriate. On Saturday, March 26, 2016 at 5:38:53 PM UTC-5, Kirill

Re: [gwt-contrib] Re: New Error caused by recent Chrome Update: RangeError: Maximum call stack size exceeded

2016-03-28 Thread Colin Alworth
The only issue I know of that causes this is https://github.com/gwtproject/gwt/issues/8233 (and also apparently https://github.com/gwtproject/gwt/issues/8229), which is fixed in GWT 2.7. This issue was caused by invoking a method with many arguments, rather than wrapping those arguments in a list

[gwt-contrib] Re: New Error caused by recent Chrome Update: RangeError: Maximum call stack size exceeded

2016-03-28 Thread 'Marius Gerwinn' via GWT Contributors
Hi Josh, Just wan't to let you know that we're facing the same issue here. We also have a quite large app, using Errai and only experiencing the issue in the newer Chrome version. No workaround except disabling the optimisation yet. If you found something or want some more info about our setup

GWT Embedded in other GWT App

2016-03-28 Thread miguelangel . demiguel
I've developed two GWT apps. The global application includes a Frame that loads the embedded GWT app. I'm using GAE 1.9.3 and GWT SDK 2.6.1, Java and eclipse. I've got it running, but the embedded must be in production or deployment mode. I can't load the embedded in application in development