Re: Firing a click event on a CellTable

2013-06-30 Thread Kartik Suba
Hey, Chris There are surely click event on the cells, but instead of handlers there are field updaters. You may take the example of the Clickable Cell where if you click on the cell its onBrowseEvent gets called which in turn calls the field updater. So the only thing you have to do is override

Re: IE11 user agent = Firefox

2013-06-30 Thread Bruno Bienfait
Done. On Saturday, June 29, 2013 2:03:04 PM UTC+2, Jens wrote: > > You should create an issue for it. Currently GWT only checks for "MSIE" in > the user agent to identify IE browsers. This needs to be changed then. > > -- J. > -- You received this message because you are subscribed to the Googl

Re: gwt maven archetype - When to run Package

2013-06-30 Thread Thomas Broyer
On Saturday, June 29, 2013 1:35:48 AM UTC+2, Kathiravan Tamilvanan wrote: > > Hi, > I am running the steps described here > https://github.com/tbroyer/gwt-maven-archetypes. But the compiled client > code (nocache.js) is not deployed to the server when i run the tomcat:run. > I had to run the m

Re: gwt-maven-archetype modular-webapp giving 404 Error

2013-06-30 Thread Thomas Broyer
On Friday, June 28, 2013 8:19:23 PM UTC+2, Kathiravan Tamilvanan wrote: > > Hmm...I am little confused about the client-only modules. I have few GWT > Client modules (mainly UI widgets) and i want to include them in my > project. And if i do source package, i dont have to inherit the module in

Re: Firing a click event on a CellTable

2013-06-30 Thread Sergey Kovin
similar case: import com.google.gwt.dom.client.Document; import com.google.gwt.dom.client.NativeEvent; import com.google.gwt.event.dom.client.ContextMenuEvent; import com.google.gwt.event.dom.client.ContextMenuHandler; import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Event;