Re: Changing characters form lower to upper case in TextBox

2017-07-06 Thread Juan Carlos
Good Morning In my case, i was resolved this problem with following code: @Ian Bambury also shared this solution TextBox example= new TextBox(); example.addKeyboardListener(new KeyboardListener() { @Override public void onKeyPress(Widget sender, char keyCode, int modifiers) {

Re: Type Corruption migrating from GWT 2.6.1 => 2.7.0

2017-07-06 Thread Thomas Broyer
On Thursday, July 6, 2017 at 11:59:01 AM UTC+2, bobbit...@gmail.com wrote: > > OK, it looks like we have two "apps" each with its own entry point, but > they share the content of $wnd, which contains a JS Framework. So the > problem is that JS calls can enter either "app" and each "app"

Re: Type Corruption migrating from GWT 2.6.1 => 2.7.0

2017-07-06 Thread Alberto Mancini
Just a shot in the dark. maybe you changed the linker ? IIRC the default changed around 2.7. Good luck. A. On Thu, Jul 6, 2017 at 11:59 AM wrote: > OK, it looks like we have two "apps" each with its own entry point, but > they share the content of $wnd, which

Re: Type Corruption migrating from GWT 2.6.1 => 2.7.0

2017-07-06 Thread bobbitdiddle
OK, it looks like we have two "apps" each with its own entry point, but they share the content of $wnd, which contains a JS Framework. So the problem is that JS calls can enter either "app" and each "app" appears to be have it's own frame (So $wnd.frames is an array of two windows.) As