Re: JQuery like animation

2011-08-21 Thread Nicolas Antoniazzi
We use gwt-fx in our project. It is only focused on FX and it does it well. http://code.google.com/p/gwt-fx/ 2011/8/21 Manuel Carrasco Moñino > On Fri, Aug 19, 2011 at 12:42 PM, Tomasz Gawel wrote: > > 1. But Animation class in gwt seems to be quite handy. All you need is > > bunch of custom in

How view html source code in app engine server

2011-08-21 Thread Буяндалай
Hi all. Please help me. How to view web page's source code. ( i use app engine+gwt) -- 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,

Aw: How view html source code in app engine server

2011-08-21 Thread Jens
Firefox: Firebug Safari/Chrome: integrated Development Tools (In Safari you have to activate them via Properties -> Advanced -> Show developer menu) IE: IE Developer Toolbar All of these show you the HTML source code that is generated by GWT javascript. -- J. -- You received this message beca

image.preFetch - How to determine its loaded?

2011-08-21 Thread al76
How can I check that an image has been prefetched and is ready to be displayed? -- 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

Re: How view html source code in app engine server

2011-08-21 Thread Буяндалай
thanks. but i make online site viewer. for example: http://www.find-ip-address.org/site-viewer.php -- 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 fr

Basic CellTree tutorial not working

2011-08-21 Thread fabio.bozzo
Trying to copy and paste the most basic celltree example: http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiCellWidgets.html#celltree But it only shows two blocks, without tree look and feel. Here's my code: public class CategorieTreeViewModel implements TreeViewModel { @

Re: Extend GWT-RPC protocol to support AMF3 protocol

2011-08-21 Thread Don Rudo
Thanks for the suggestion; I think gwt4air is for the client side; what we need is actually a way to make GWT RPC understand AMF3 requests from already implemented clients, the actual JEE implementation is done at GraniteDS but it would make no sense to have it running for GWT adding all this extra

Maps V3 Partial Rendering [ref: checkResize()]

2011-08-21 Thread hans
I need help solving a rendering problem with GMaps v3. I'm developing a GWT app using the following SDK/JAR: - GWT 2.3.0 - gwt-maps-3.0.2b.gwt22.jar (Google Maps API V3) Using the great resource of Google I/O 2009+2010 video presentations by Ray Ryan, I developed the app using the Acti

Re: DataGrid on a hidden tab

2011-08-21 Thread P.G.Taboada
Am I the only one with the problem? I have 2 or more tabs, on each tab a data grid. only the one initially visible gets rendered, all the other stay "hidden, not visible, not rendered, whatever" even after the tab gets selected.# brgds, Papick On 15 Aug., 12:39, "P.G.Taboada" wrote: > Well, no

Re: Integrating RequestFactory into an eclipse project

2011-08-21 Thread Spundun
Ah!! I did that already but turns out I missed "enabling annotation processing" I thought it must be On globally. Now I feel a lot more confident that I can pull through the RequestFactory approach. Thanks all. On Aug 20, 12:24 pm, Thomas Broyer wrote: > You can also download the JAR from SVN, a

Re: Integrating RequestFactory into an eclipse project

2011-08-21 Thread Spundun
Thanks David, I had already Bookmarked your project. But I decided to first implement this on my own and *then* compare with your example. That way I wouldn't follow someone else's example blindly. Thanks Spundun. On Aug 19, 10:45 am, David Chandler wrote: > See alsohttp://code.google.com/p/list

SerializationException__Ljava_lang_String_2V(Unknown Source)

2011-08-21 Thread Aravind Reddy
When submitTeam(...) is called, I am getting *unknown.com_google_gwt_user_client_rpc_SerializationException_SerializationException__Ljava_lang_String_2V(Unknown Source). The List can have both Player* and Captain objects. I am using GWT 2.3.0 with JDK 1.6. Any hint is appreciated. I've also pos

Re: Funny behaviour in CellTable.

2011-08-21 Thread jchimene
Hi Julian, I was too glib in my earlier reply. I, too, am seeing this problem. I hadn't completetly tested this app in production mode, and it fails miserably when compiled. So, I will post updates to this thread when I get a solution that works not only in development mode, but also when compil

Re: SerializationException__Ljava_lang_String_2V(Unknown Source)

2011-08-21 Thread Strelok
Both, Player AND Captain, must have a public no-args constructor defined explicitly if you defined any other constructors. Otherwise automatic serialization code will not be able to instantiate it. On Aug 22, 6:17 am, Aravind Reddy wrote: > When submitTeam(...) is called, I am getting > *unknown

DoubleBox cell decimals positions formatting

2011-08-21 Thread fabio.bozzo
I have this in my uiBinder: Declared as @UiField ValueBoxEditorDecorator importoEditor; in my code.

Regular expressions in GWT

2011-08-21 Thread Raja Shekhar
Hi, Can we use java.util.regex.Pattern in GWT? i'm getting the following error. [ERROR] [esms] - Line 31: No source code is available for type java.util.regex.Pattern; did you forget to inherit a required module? I included JRE. -- Thanks, Raja -- You received this message because you are su