gwtquery

How to begin working with GwtQuery?

Hi, I've dived into the GWT world a couple of months ago and find it quite interesting. I'm currently developing a web application which is to be used internally and so we need to resize the browser window, which can only be done by JSNI. After hitting some problems regarding the JSNI I was advised to look into jquery and I found that i...

How to get a reference to the Window object using GWTQuery?

The title pretty much says it all. I'm trying to use jQuery's ability (hoping GWTQuery has implemented it) to pass a callback function to the window.resize something like this(example from jquery site): $(window).resize(function(){ alert("Stop it!"); }); but when I tryi to type $(window) in Eclipse I get an error that window can not...