Re: JQuery like animation

2011-08-23 Thread Christian Goudreau
would be cool if the bench on Gwt-Query demos would use the latest jQuery and other library :D On Tue, Aug 23, 2011 at 6:02 PM, VisualFox wrote: > Almost shameless promotion - disclaimer I am the author of both > visualfox-fx and visualfox-fx-gwtquery > > Gwtquery will works well. But if you are

Re: JQuery like animation

2011-08-23 Thread VisualFox
Almost shameless promotion - disclaimer I am the author of both visualfox-fx and visualfox-fx-gwtquery Gwtquery will works well. But if you are looking for just an animation library you may want to check: a) visualfox-fx which is an animation and effect library using both css3 animation type and

Re: JQuery like animation

2011-08-23 Thread Manuel Carrasco Moñino
With gquery the syntax is the same, except that you get advance of the gwt compiler including in your final js just the stuff you need, you do not need to import any external library like jquery.js, and you do not have to write any jsni method. - Your example passing a gwt UI component import stat

Re: JQuery like animation

2011-08-23 Thread Manuel Carrasco Moñino
Here: http://gwtquery.googlecode.com/svn/trunk/demos/gwtquery.samples.GwtQueryBench/GwtQueryBench.html?ask=false On Mon, Aug 22, 2011 at 10:27 PM, Christian Goudreau wrote: > I remember seeing a race between Gwt-Query and jQuery with animations where > Gwt-Query run that race, does anyone has de

Re: JQuery like animation

2011-08-22 Thread Christian Goudreau
I remember seeing a race between Gwt-Query and jQuery with animations where Gwt-Query run that race, does anyone has de link to that video somewhere? 2011/8/22 Dimitrijević Ivan > You can include jQuery fraework in your application and use JSNI to invoke > jQuery's animation function. > > public

Re: JQuery like animation

2011-08-22 Thread Dimitrijević Ivan
You can include jQuery fraework in your application and use JSNI to invoke jQuery's animation function. public class Animation { public static int SPEED_SLOW = 1300; public static int SPEED_NORMAL = 800; public static int SPEED_FAST = 400; public static native void doFadeInAnimation(Element e, i

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

Re: JQuery like animation

2011-08-20 Thread 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 interpolation functions. But these are easy to be > taken from MooTools (i did take se below :)) - (easing functions in > jquery behave slightly differen

Re: JQuery like animation

2011-08-19 Thread Tomasz Gawel
1. But Animation class in gwt seems to be quite handy. All you need is bunch of custom interpolation functions. But these are easy to be taken from MooTools (i did take se below :)) - (easing functions in jquery behave slightly different so simple rewriting it in java drops off). 2. Manuel - great

Re: JQuery like animation

2011-08-19 Thread Manuel Carrasco Moñino
On Tue, Jul 5, 2011 at 9:01 PM, Guy Nirpaz wrote: > Thanks Christian, > > I am well familiar with GWT-Query, however, I feel it doesn't match well GWT > (MVP) programming model and design. It is not true, gquery can be used in different contexts and does not break the MVP pattern if you do not wa

Re: JQuery like animation

2011-07-06 Thread dindeman
Yes this progress bar looks really neat indeed, nice. What about gwt-fx ? I have used it in the past and found it pretty good then. I remember that I had to switch to it (coming from using GQuery) because I needed a way to intercept the process of a fading effect in the middle and reverse it. A

Re: JQuery like animation

2011-07-05 Thread Christian Goudreau
Well it does. But you have to trigger the animation from the presenter. The actual animation that take care of the GQuery stuff can be in the view or in another class. If the animation in the view isn't triggered from the view itself, but from the presenter, it matches the MVP pattern. "Pattern ar

Re: JQuery like animation

2011-07-05 Thread Guy Nirpaz
Thanks Christian, I am well familiar with GWT-Query, however, I feel it doesn't match well GWT (MVP) programming model and design. Guy -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://gro

Re: JQuery like animation

2011-07-04 Thread Uemit
If you don't care much about old browsers you can also use CSS3 transitions/animations for simple stuff. I used it in a GWT project (i.e. ProgressBar) and it works really well. i.e.: http://aatiis.me/demos/pure-css-progress-bar -- You received this message because you are subscribed to the G

Re: JQuery like animation

2011-07-04 Thread Christian Goudreau
Have you ever heard of Gwt-Query ? :D http://code.google.com/p/gwtquery/ Cheers, On Sun, Jul 3, 2011 at 11:58 AM, Guy Nirpaz wrote: > Hey, > > Any idea how to get functionality similar to JQuery: > $("p.neat").addClass("ohmy").*show("slow");* > * > * > * > * > I'm referring to the { .show("slo

JQuery like animation

2011-07-03 Thread Guy Nirpaz
Hey, Any idea how to get functionality similar to JQuery: $("p.neat").addClass("ohmy").*show("slow");* * * * * I'm referring to the { .show("slow") } part. I'm looking to find an extensive set of animation capabilities which can be used with GWT (not ext-GWT or other non native GWT libraries) A