[gwt-dev] Librairies with same package name

2020-05-07 Thread Yann
Since the use of gwt-dev, it is the method of this library which is called. I tried to use newer versions of gwt-dev but the environment makes it not possible How can I fix it? Thanks for your help, Yann -- You received this message because you are subscribed to the Google Groups "GWT

Re: Trailing _0 in variable names and -generateJsInteropExports flag

2016-09-26 Thread Yann Vo
Hello Thomas, thanks for giving it a try! Indeed, it works! Now I feel so stupid! :( Apparently some pieces must have been remaining from my previous builds... anyway... Jens and Thomas, thanks again for your time and my apologies for the noise! -- You received this message because you are

Re: Trailing _0 in variable names and -generateJsInteropExports flag

2016-09-26 Thread Yann Vo
BTW, of course, I could add the isNative=true and define my messages "DTOs" in pure JavaScript. The goal of my issue and this message were not to get a working solution but rather to avoid a nasty bug in 2.8.0 final... -- You received this message because you are subscribed to the Google

Trailing _0 in variable names and -generateJsInteropExports flag

2016-09-26 Thread Yann Vo
Hello, I just raised https://github.com/gwtproject/gwt/issues/9431 for which I had a quick rely (thanks for that!) but... it was closed and flagged invalid. Rather than polluting the bug database further, I open this thread (which I would have done initially if I had not considered this

Re: AutoBeanCodexEncode does not encode numbers when zero is the value

2016-09-21 Thread Yann Vo
For what it's worth, more than 3 years later... one workaround to have zero values serialized (along with the key) as you ask for is to use an Integer rather than an int. This is the JavaScript semantic (anything can be undefined or null) and then it behaves as other JSON serializers to omit

Re: Deformed DialogBox

2013-03-11 Thread yann
Hello, I have the same problem. You found the solution ? Or anyone !! Thx Le jeudi 7 juillet 2011 13:50:56 UTC+2, Tiago Rinck Caveden a écrit : Hello all, I'm a newbie in GWT and I am struggling to create a dialog box using UIBinder. I'm sorry if this has already been discussed but I

Re: Cancel CellList selection

2011-11-10 Thread Yann
Hello Thomas, Thanks a lot for your response but what do you mean by Try with a custom CellPreviewEvent.Handler. I tried : myCellList.addCellPreviewHandler(new CellPreviewEvent.HandlerMyObject(){ @Override public void onCellPreview(CellPreviewEventMyObject in_event){

Re: Cancel CellList selection

2011-11-10 Thread Yann
Apologies Thomas, onCellPreview is actually called ! I didn't find yet which native event I should cancel, but I'm working on it... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Cancel CellList selection

2011-11-10 Thread Yann
Thomas, Overriding SingleSelectionModel.setSelected() works like a charm. It's so obvious I really should have figured it by myself... Thanks a lot ! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Cancel CellList selection

2011-11-09 Thread Yann
on another cell. Any idea ? Thanks. Yann. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

Adding text to GWTGL ??

2010-05-10 Thread yann menesguen
Hello everyone, I'm using GWTGL to create a 3D coverflow, and i would like to add some text on each coverflow item. How could it be possible, do I have to change things on my Texture2D ? I'm really lost !! Many thanks Yann -- You received this message because you are subscribed to the Google

Graphical javascript objects implemented to GWT

2010-03-18 Thread yann menesguen
Hello, I've a problem : I've got a .js graphical object (coverflow) that I would like to integrate into a GWT project. How is it possible with JSNI ? How can I add it into a container to show it on my browser ? I'm sorry I'm a new adept of GWT and I don't have all the technical experience...

[gwt-contrib] Re: GWT 1.6 #5110 SVN: MouseWheel event not working on Firefox3

2009-04-28 Thread yann
Hi, even the MouseWheelListener is broken in GWT 1.6.4. example: public class TestEntryPoint implements EntryPoint { MouseWheelListener mwl = new MouseWheelListener() { public void onMouseWheel(Widget sender, MouseWheelVelocity velocity) { Window.alert(Mouse Wheel

Re: Proposal for a compiler optimization parameter allowing a cross-module communication scheme.

2009-04-09 Thread Yann
I am not sure how this helps on the issue I am trying to solve... You say: Then for your central communication, you can use JSNI to transfer data between modules but transferring Java instances between modules is exactly what I am failing to achieve, due to the zealous compiler

Proposal for a compiler optimization parameter allowing a cross-module communication scheme.

2009-04-08 Thread Yann
=== Context information === In order to handle server push events, I am using a pattern described and used in multiple places: a getEvents() RPC method waits for up to 30 seconds but returns as soon as an event is received. The issue is that this pattern eats a browser

[gwt-contrib] Re: Bug? Cannot unsink ONMOUSEWHEEL event on Firefox

2009-01-15 Thread Yann
... http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-Registration-interfaces So I will now go down the route to submit a bug and... see what happens next. Thanks for your attention so far. Yann --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web

[gwt-contrib] Re: Bug? Cannot unsink ONMOUSEWHEEL event on Firefox

2009-01-15 Thread Yann
Just to add a cross reference to the submitted issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3286 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Bug? Cannot unsink ONMOUSEWHEEL event on Firefox

2009-01-13 Thread Yann
Hi, This is my first post on the GWT forums, so I wanted to start with thanking Google and all of the contributors for this great tool! It's very impressive and very pleasant to use. To prevent usage of the mousewheel on a sub area of an application, I have been calling these two lines: