Conditional CSS doesn't work on Tomcat

2013-09-04 Thread Dominic Warzok
Hey all maybe you can help me :) I want to use some Conditional CSS in my webapp. For test I build in some simple user.agent detection like it ist describe here . Now my main.css looks like this: @if user.agent safa

Call REST service from GWT App's client side

2013-09-04 Thread SergeZ
Hi everyone! Please, help me figure out how can I manage to call the external REST service from GWT application's client code. I've heard, that GWT has a RequstBuilder class in order to do such things, but suddenly I figured out that this is a quite ancient approach to implement. Hence, the fol

Blog article on using Canvas and GWT to create a client side image crop tool

2013-09-04 Thread dparish
I created this article because I couldn't find a similar article when I built the solution: http://lithosphere.lithium.com/t5/tech-blog/Lithium-Engineering-Using-GWT-and-HTML-5-Canvas-for-online/ba-p/100833 Full code is provided for anyone that wants to play around with the solution. -Dave --

ServletContextEventHandler and static block

2013-09-04 Thread Leung
Hi all, Both ServletContextEventHandler and static block have high startup priority. In usage, what is the difference? What should be put in the SC event handler and the static block? Thanks Ming -- You received this message because you are subscribed to the Google Groups "Google Web Toolki

Re: GWT In Eclipse Debug Mode All Of A Sudden is Super Slow

2013-09-04 Thread Juan Pablo Gardella
Also see http://code.google.com/p/google-web-toolkit/issues/detail?id=5261 You have to delete some temp files too. 2013/9/4 SaiP > Also, for the beginners, you might have to set the log level to 'info' in > the run configurations of the GWT. This is another reason why the debug on > the GWT ta

Re: GWT In Eclipse Debug Mode All Of A Sudden is Super Slow

2013-09-04 Thread SaiP
Also, for the beginners, you might have to set the log level to 'info' in the run configurations of the GWT. This is another reason why the debug on the GWT takes so long, initially when you run the application it will be set to 'All'. On Wednesday, July 3, 2013 10:14:10 AM UTC-5, Carl wrote:

Re: IE10 support in Gwt

2013-09-04 Thread Patrick Tucker
Looks like your hover should be on the a element? -- 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...@googlegroups.com. To post

Re: GeoChart not working in GWT application

2013-09-04 Thread Rogelio Flores
I don't know how to fix the problem you're facing, but if I understand correctly, you're wrapping the JS API. Have you considered using any of the two already available wrappers for GWT?: https://code.google.com/p/gwt-google-apis/wiki/VisualizationGettingStarted ("official" project from google

Re: GWT Cell tree refresh issue

2013-09-04 Thread Thomas Broyer
On Tuesday, September 3, 2013 11:30:27 AM UTC+2, Harish Alwala wrote: > > > Thanks for reply, > Here I am attaching 3 classes. > MyNode.java > This is a bean class that holds the data to display in the tree > > MyTreeView.java > Here we build the tree and add the nodes to the tree. First time

Re: Developer plugin for Firefox 23 doesn't work

2013-09-04 Thread Gražvydas Valeika
On Wed, Sep 4, 2013 at 12:18 PM, GWTter wrote: > Has anyone tried just removing the plugin and reinstalling it? I was > having the same issue and that seems to have remedied it. > > No, this doesn't help. While looking at: Failed to load native module at path '/home/gv/.mozilla/firefox/cwbagi2d.

Re: Developer plugin for Firefox 23 doesn't work

2013-09-04 Thread GWTter
Has anyone tried just removing the plugin and reinstalling it? I was having the same issue and that seems to have remedied it. On Thursday, August 29, 2013 4:46:04 PM UTC+2, Emil Burzo wrote: > > On Friday, August 16, 2013 12:42:01 PM UTC+3, Gražvydas Valeika wrote: > >> Hi, >> >> I just updated

Change Stylesheet depending on device

2013-09-04 Thread Dominic Warzok
Hey, it ist possible to change the css in GWT depending which device the User has? f.e. if the User call my WebApp with chrome I want to load myWebapp.css when the User load from a website I want to remove myWebapp.css and replace it with myWebappMobile,css. I'm looking for something simula