Re: GWT RPC AsyncCallBack is always failing persistently.

2013-11-01 Thread zhenliang . low
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser. ( Blocked attempt to access interface 'com.mycompany.project.client.Connection', which is not implemented by 'com.mycompany.project.server.MySQLCo

Re: Using hammer.js for handling touch events/gesture recognitions?

2013-11-01 Thread Ed
Of course you can, just write a tinny jsni wrapper around it and you can use any js lib. See: http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html I just wrote one for GreenSock GSAP, just search in the forum, you will find info about it. Also look at the GWT Google API wapper sourc

gwt date B U G

2013-11-01 Thread Axel R
Hi, Yesturday, Oct 31th, 2013, I had a bug with "gwt date" (I do not understand if the java.util.date has something to do with GWT but well...). I have an 'event application', and when I was using the gwt datepicker to go the the *2nd NOV, 2013*, my application has also to calculate the date o

Re: gwt date B U G

2013-11-01 Thread Jens
> Yesturday, Oct 31th, 2013, I had a bug with "gwt date" (I do not > understand if the java.util.date has something to do with GWT but well...) > . > > I have an 'event application', and when I was using the gwt datepicker to > go the the *2nd NOV, 2013*, my application has also to calculate th

Implementation alternatives to improve GWT RequestFactory read and write based use cases

2013-11-01 Thread Doug Gschwind
Hello everyone, We are using GWT 2.5.1, Hibernate 4.x as a JPA 2.x provider, Oracle database 11g, and RequestFactory for our application. One of the areas of our application is slightly slow at read time and is noticeably slower at write time. The use case in particular is a fairly complex edit

reload widget depending on treeitem selection

2013-11-01 Thread Suzan Abboud
hi all, i am a beginner user for GWT i created a tap panel which consist of tree and other widget i want to reload the other widget depending on specific selection value of the treeitem can anyone help -- You received this message because you are subscribed to the Google Groups "Google Web T

Re: gwt date B U G

2013-11-01 Thread jhulford
You really need indicate the manner in which you're calculating the "tomorrow date" before anyone can actually do much other than speculate to help you here. I would imagine you should be able to determine what the code is doing differently just by stepping through your code in the browser's

HTMLPanel cannot remove DivElement inside its node ?

2013-11-01 Thread Axel R
Hi, *HTMLPanel panel = new HTMLPanel("");// class attribute* * * *public void function()* *{* * panel.clear(); * * Element d3 = DOM.createDiv(); d3.setClassName(N.NN.N().resultSearch_category_title()); d3.setInnerHTML(name);* * panel.getElement().appendChild(d3);

Re: HTMLPanel cannot remove DivElement inside its node ?

2013-11-01 Thread Jens
Build a custom Widget (probably extending Widget directly) that contains your element logic behind named methods. Maybe a D3RenderWidget? GWT's clear() method on widgets only removes child widgets. So it works on the widget abstraction layer and not on the lower element layer. If you attach add

Re: gwt date B U G

2013-11-01 Thread Axel R
Ok, I will try to debug it, maybe do a mini app. read doc etc... and think a little more etc... but now I also have other pending things to do... Quickly, here is my context : . //FUNCTIONS *public static Date set___Str___To___Date(String s) // convert STRING (format ENGLISH = EN = 2013-08-15

Re: gwt date B U G

2013-11-01 Thread Paul Robinson
The problem is this code: Date date = new Date(); date.setYear(Integer.valueOf(y) - 1900); date.setMonth(Integer.valueOf(m) - 1); date.setDate(Integer.valueOf(d)); You found this bug when you ran it yesterday, October 31st. That's pertinent because the first line above creates a new date

Re: SuggestBox and HasBlurHandlers

2013-11-01 Thread Norm Deane
Adding a FocusHandler to the TextBox isn't quite what I need. The TextBox will blur when the user arrows down into the suggestion display. When this occurs they really haven't left the SuggestBox yet as they're still navigating through the suggestions. I'd be more interested in a blur event tha

Re: gwt date B U G

2013-11-01 Thread Axel R
Thanks you. :) -- 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 to this group, send email to googl

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-11-01 Thread nas
Hi Colin, We are very excited about GWT3, with so many planned enhancements and improvements, can't wait. In terms of sencha GXT4 road map for web and tablets, I couldn't resist asking the question on the road map: will GXT4 be based on GWT3 with HTML like design with its possible enhanceme