Re: GWT 2.8 next release

2016-03-30 Thread Ed
Thanks for sharing. It will be worth the wait. Ed On Wed, Mar 30, 2016 at 6:09 PM, Thomas Broyer wrote: > We're a bit late wrt our plan for RC1, but we're currently adding > emulation for many Java 8 APIs (new methods in collections, > java.util.function, spliterators, and

GWT 2.8 next release

2016-03-30 Thread Debasish Padhy
When shall we expect a new release of 2.8 .. may be beta2 ? Its been more then 3 months since beta1 . -- 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

Re: [gwt-contrib] DevMode -style parameter

2016-03-30 Thread 'Goktug Gokdogan' via GWT Contributors
Can't recall if we support different styles in SDM, but give it a try and if it works, I think you can expose the flag. On Tue, Mar 29, 2016 at 6:45 AM, Jens wrote: > Given that DevMode in GWT 2.8 launches SDM by default and SDM uses > obfuscated JS output by default,

Getting ClassCastException after GWT upgrade

2016-03-30 Thread sibasish palo
Below is the sample method i am writing to get selected items and using the values in view calss public List getSelectedElements(){ List _items = new ArrayList(); if(isShowSelectedControl ){ ListGridRecord[] items = selectedItems.getRecords(); if(items!=

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

2016-03-30 Thread Harald Pehl
I'm using an implementation based on http://zeroclipboard.org/ [1]. ZeroClipboard is used by GitHub and should work on all modern browsers. My implementation is built using JsInterop and provides a subset of ZeroClipboard's API. It should be pretty easy to add more methods if you need them.

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

2016-03-30 Thread Vassilis Virvilis
That was indeed very insightful and helpful. Thanks for sharing and congrats to the lucid guys for the guide. On Wed, Mar 30, 2016 at 2:50 AM, JonL wrote: > This might be helpful: > > >

Re: SuperDevMode

2016-03-30 Thread Thomas Broyer
On Tuesday, March 29, 2016 at 8:54:56 PM UTC+2, Jim Douglas wrote: > > Whoops, I did have one more specific question. I followed Brandon's video > to debug with Chrome, and it worked great: > > https://www.youtube.com/watch?v=icJEa5lcJaQ > > Is there a video, or notes, describing how to debug

Re: How can I set the parent of an Element?

2016-03-30 Thread 'Klemens Schrage' via GWT Users
Hello, As I understand your MentionPanel is the contenteditable (DIV) you are inserting DOM-nodes into. And your code crashes in "MentionPanel.this.removeFromParent()"? That is probably because you are never inserting the MentionPanel in the widget hierarchy as a child of another widget.