Re: SafeHtmlCell column is not firing the handler onBrowserEvent

2015-04-23 Thread Raphael Garnier
SafeHtmlCell doesn't consume event. If you want to catch some event, you can't use it ! Here a sample of my TouchTextCell : public class TouchTextCell extends AbstractSafeHtmlCell { public TouchTextCell() { this(SimpleSafeHtmlRenderer.getInstance()); } public TouchTextCell(SafeHtmlRen

Re: Not Able to attach events on CellTable using native Javascript

2015-04-07 Thread Raphael Garnier
Hi, jquery works on DOM elements. When you're attaching the celltable there is a render process that constructs the DOM. You should call jquery only when "all is done". Usually, I use the scheduleDeferred method of Scheduler to do that. Furthermore, you should take a look at GQuery, so you cou

Re: GWT 2.7.0 RC1 available

2014-10-31 Thread Raphael Garnier
variable ! Thanks for your help. Le vendredi 31 octobre 2014 16:39:21 UTC+2, Thomas Broyer a écrit : > > > > On Friday, October 31, 2014 2:10:14 PM UTC+1, Raphael Garnier wrote: >> >> Hi, >> >> I also use SDM with -noserver and I don't know wich direc

Re: GWT 2.7.0 RC1 available

2014-10-31 Thread Raphael Garnier
Hi, I also use SDM with -noserver and I don't know wich directory I must chose to have the refresh feature active. Here's the arguments : > -remoteUI "${gwt_remote_ui_server_port}:${unique_id}" -startupUrl > http://localhost:8080/tablet.jsp -logLevel INFO -noserver -workDir > "${resource_lo

How to figure out HTMLPanel rendering is complete

2014-10-17 Thread Raphael Garnier
Hi, Maybe you could use scheduleDeferred of Scheduler to run code when the DOM is done. See http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/client/Scheduler.html#scheduleDeferred(com.google.gwt.core.client.Scheduler.ScheduledCommand) -- You received this message because you are s

Strange behavior of Chrome 35.0.1916 on Windows 7 when add/remove style of HTMLPanel

2014-05-30 Thread Raphael Garnier
Hi, I have exactly the same problem and I don't find a solution to fix that ! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr.

Re: Inject jquery for a wrapper

2014-05-20 Thread Raphael Garnier
Hi, I used JsniBundle from Gquery to load jquery and the wrapped library. The Java code above is correct but I had to modify the library. The functions were wrote like this : (function(a) { ... })(Jquery); And I had to add window. before Jquery : (function(a) { ... })(window.Jquery); For an

Inject jquery for a wrapper

2013-12-10 Thread Raphael Garnier
Hi all, I'd like to write a wrapper for the javascript library mobiscroll. I want a stand alone library with all the css and javascript files embedded. It works fine when the scripts are included in the host page but when I try to inject them, I always get the same error : "jQuery is not defined