Re: Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Hristo Stoyanov
Jens, Thanks .. this seems to work: @JsType(isNative = true, name = "Checkbox", namespace = "checkbox") public class SUICheckbox extends JQueryContext { ... @JsType(isNative = true, name = "Object", namespace = GLOBAL) public static class SettingsClass { @J

Re: Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Hristo Stoyanov
Jens, So how do I create an instance of it? -- You received this message because you are subscribed to the Google Groups "GWT Users" 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,

Re: Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Jens
I think your Settings class should have @JsType(isNative = true, namespace = GLOBAL, name = "Object") to make it a JavaScript object literal. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Hristo Stoyanov
Hi all, I need to interface with JQuery API that looks like this: http://semantic-ui.com/modules/checkbox.html#/examples $('.callback.example .checkbox') .checkbox() .first() .checkbox({ onChecked: function() {...}, onUnchecked

Re: Not able to move left and right arrows on usage of jquery mask input plugin

2015-05-29 Thread Yogish Nayak
And that too this happens only in Firefox browser. I am using Firefox 25. In IE and chrome browser works fine. On Friday, May 29, 2015 at 11:49:39 AM UTC+5:30, Yogish Nayak wrote: > > I need masking for Datebox field. GWT is not providing masking feature. So > I included jquery mas

Re: Not able to move left and right arrows on usage of jquery mask input plugin

2015-05-28 Thread Yogish Nayak
I need masking for Datebox field. GWT is not providing masking feature. So I included jquery masked input plugin. and using mask feature. Is GWT providing masking feature?? Is there any better way for having mask feature in gwt input widgets?? On Thursday, May 28, 2015 at 6:22:54 PM UTC+5:30

Re: Not able to move left and right arrows on usage of jquery mask input plugin

2015-05-28 Thread Yogish Nayak
gt; On 28 May 2015 at 09:33, Yogish Nayak > > wrote: > >> I am using GWT in my application. Currently I am using GWT textbox for >> date field. For masking input field, jquery masked plugin is been used. >> Masking is working fine. But after entering the data, I am not

Re: Not able to move left and right arrows on usage of jquery mask input plugin

2015-05-28 Thread Yogish Nayak
t to pick dates. > > On 28 May 2015 at 09:33, Yogish Nayak > > wrote: > >> I am using GWT in my application. Currently I am using GWT textbox for >> date field. For masking input field, jquery masked plugin is been used. >> Masking is working fine. But after enterin

Re: Not able to move left and right arrows on usage of jquery mask input plugin

2015-05-28 Thread Juan Pablo Gardella
asking input field, jquery masked plugin is been used. > Masking is working fine. But after entering the data, I am not able to move > the cursor using left and right arrows keys inside textbox. > > Any ideas?? Please suggest. > > -- > You received this message because you a

Not able to move left and right arrows on usage of jquery mask input plugin

2015-05-28 Thread Yogish Nayak
I am using GWT in my application. Currently I am using GWT textbox for date field. For masking input field, jquery masked plugin is been used. Masking is working fine. But after entering the data, I am not able to move the cursor using left and right arrows keys inside textbox. Any ideas

Validate date using jquery masked input plugin

2015-05-27 Thread Yogish Nayak
I am using jquery masked input plugin for masking of input fields. I am using `GWT` and using jquery mask input function using `JSNI`. For date field having mask like "`MM/dd/`", how can I restrict user not to enter `month >12 or day >31`... My implementation is as foll

How to implement jquery rotatable with gwtquery ?

2014-07-31 Thread Lee ViDemantay
So I'm trying to implement this <https://raw.githubusercontent.com/trev/Rotatable/master/js/rotatable.js> jquery plugin into a gwtquery one. I'm using the Draggable <https://code.google.com/p/gwtquery-plugins/wiki/DraggablePluginGettingStarted> . Most of the code is

Re: Inject jquery for a wrapper

2014-05-20 Thread Raphael Garnier
Hi, I used JsniBundle from Gquery to load jquery and the wrapped library. The Java code above is correct but I had to modify the library. The functions were wrote like this : (function(a) { ... })(Jquery); And I had to add window. before Jquery : (function(a) { ... })(window.Jquery); For an

Re: Inject jquery for a wrapper

2014-05-16 Thread Telmo Alves
Hello Raphael, did you solve your problem with GWT and jQuery? If you did, could you help me out? I've been struggling with pretty much the same problem, tried all those alternatives and still can't make it work. In my case, if I hit F5 or Ctrl+F5 and refresh the page it just works a

Inject jquery for a wrapper

2013-12-10 Thread Raphael Garnier
Hi all, I'd like to write a wrapper for the javascript library mobiscroll. I want a stand alone library with all the css and javascript files embedded. It works fine when the scripts are included in the host page but when I try to inject them, I always get the same error : "jQu

Re: replacing jquery with GWT features in demo:: for web Designers

2013-05-16 Thread Jens
using JQuery. Thats because in GWT you program Java and you need either a browser plugin for live editing (which is a bit slower because the plugin needs to translate between Java <-> JavaScript) or you have to compile your GWT code into JavaScript before seeing changes in the browser.

replacing jquery with GWT features in demo:: for web Designers

2013-05-16 Thread Clarissa G
[UI/UEX web designer question] Is there a way for a UI designer (myself) to still use clean HTML/CSS while pulling in GWT features/elements (that may use UIBINDER) instead of having to find/customize/use throw away jquery to demo functionality? Thanks all! -- This communication, along with

Re: How to call gwt api from jquery/javascript ?

2013-01-29 Thread Alain Ekambi
Have a look at GWT-Exporter 2013/1/29 vaibhav bhalke > Hi All, > I want to know is there any way to call gwt's api from javascript/jquery. > > -- > Best Regards, > Vaibhav > > -- > You received this message because you are subscribed to the Google Groups &g

How to call gwt api from jquery/javascript ?

2013-01-29 Thread vaibhav bhalke
Hi All, I want to know is there any way to call gwt's api from javascript/jquery. -- Best Regards, Vaibhav -- 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

GWT :: How to Commit & Cancel GWT's EditText cell using javascript/jquery?

2013-01-26 Thread vaibhav bhalke
I am using GWT2.3 celltable GWT :: How to Commit & Cancel GWT's EditText cell using javascript/jquery ? Following is cancel() of EdittextCell-GWT Any alternative to do this in javascript ? /** * Commit the current value. * * @param context the context of the cell

Re: jquery jqGrid with GWT

2012-10-10 Thread Munendra Sharma
Hi, I am also looking for the same, if somebody has done this please post, many thanks in advance. On Wednesday, 16 March 2011 10:12:27 UTC+5:30, ajaxDeveloper wrote: > > I want to use jgQrid as my GWT widget. If anyone has done this please > do help me with example code. > > I will be very gra

Re: jQuery sortable list with GWT

2012-08-09 Thread David
On Sunday, August 5, 2012 6:40:13 PM UTC-4, CSchulz wrote: > > "GWT doesn't have any native support for this sort of thing, that's why > I'm trying to drop in some basic jquery code." > > gwt-dnd ( http://code.google.com/p/gwt-dnd/) works pretty we

Re: jQuery sortable list with GWT

2012-08-07 Thread CSchulz
Really, there's nothing on this? -- 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://groups.google.com/d/msg/google-web-toolkit/-/bH1kk2hxcTgJ. To post to this group, send email to google-web-t

jQuery sortable list with GWT

2012-08-05 Thread CSchulz
I'm building a GWT web app and would like to implement some jquery code for a sortable list similar to this one: http://jqueryui.com/demos/sortable/ but the actual implementation is a little more complex. It seems GWT doesn't have any native support for this sort of thing, that

Re: jQuery and GQuery - any bad interactions?

2012-06-07 Thread David Amend
A gwt implementation of backbone.js would be a fun idea. Probably I should give it a try. Thanks for your statement. -- 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://groups.google.com/d/ms

Free JavaScript, Dojo, jQuery, Ajax, Comet, DWR, JSON daily webinar series

2012-04-18 Thread sangshin
Free JavaScript, Dojo, jQuery, Ajax, Comet, DWR, JSON daily webinar series starts from April 16th. 18 one-hour sessions during the 3 week period (April 16th - May 5th, 2012) 9PM-10PM EDT New York time, 5:30AM-6:30AM (next day) India Time Single registration below lets you register for all 18

Re: GWT, JQuery, Tipsy

2012-02-08 Thread Sebastian Gurin
Glad to help. That is one side of developing a porting of an existing javascript toolkit to GWT. The other side of the work is to let the user to manipulate javascript native objects in your java code. You can use gwt overlay types for that. Explanation, for example, consider this tipsy javascr

Re: GWT, JQuery, Tipsy

2012-02-08 Thread kellizer
Works a treat - thank you very much -- 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://groups.google.com/d/msg/google-web-toolkit/-/a7aSczHMxSMJ. To post to this group, send email to googl

Re: GWT, JQuery, Tipsy

2012-02-08 Thread Sebastian Gurin
2:27:28 -0800 (PST) kellizer wrote: > Hi All, > > I need to get tipsy ( http://onehackoranother.com/projects/jquery/tipsy/ ) > working with GWT as the designers have introduced this in along with GWT > and I can't face to telling them tipsy can't be supported! > &g

GWT, JQuery, Tipsy

2012-02-08 Thread kellizer
Hi All, I need to get tipsy ( http://onehackoranother.com/projects/jquery/tipsy/ ) working with GWT as the designers have introduced this in along with GWT and I can't face to telling them tipsy can't be supported! >From analysis - it it works with JQUERY to traverse through the D

Re: GWT DialogBox & Jquery DatePicker

2012-01-23 Thread Bruno MT
Hola Daniel, Supongo que al final lo que haré será crear un componente que tenga la misma estructura y los mismos estilos que el datePicker de Jquery. Yo soy un mandado, no tengo ningun poder de decisión :( Muchas gracias por contestar. Saludos! Bruno. On 19 ene, 23:13, Daniel Mauricio Patino

Re: GWT DialogBox & Jquery DatePicker

2012-01-19 Thread Daniel Mauricio Patino León
convence a tu cliente de usar el Date picker del GWT. No tiene sentido reemplazarlo por el de jQuery. 2012/1/19 Bruno MT > Hello, > > I'm spanish java developer, like u can read(horrible english...) > > I'm a little newbie in GWT development. I enter in a maintenc

GWT DialogBox & Jquery DatePicker

2012-01-19 Thread Bruno MT
Hello, I'm spanish java developer, like u can read(horrible english...) I'm a little newbie in GWT development. I enter in a maintence project, and it's the worst code I had ever seen... Client told that he wants to use Jquery DatePicker in a GWT dialogBox. In Internet Explorer ev

Re: jquery?

2011-10-27 Thread Roger Studner
There are many (many) jQuery based live grid implementations. They are far easier to style, implement and customize than "CellTable" A massive strength of GWT, is the ability to model your domain objects on the client. Sure, you can do this in javascript using Backbone and other

Re: jquery?

2011-10-27 Thread Andrei
I wrote complex apps in both JQuery and GWT. My experience boils down to two key points: (1) 2-3,000 lines of code or less, you can do it much faster in JQuery than GWT, and the resulting JavaScript will be much smaller. More code - go with GWT. (2) If you plan to use widgets like DataGrid or

Re: jquery?

2011-10-26 Thread t.dave
7;re building what's really a website and you want to have just a sprinkling of ajax or a little cool functionality, then by all means go with jquery. it's much more lightweight and for simple things, way simpler. but from what i've seen i would definitely not want to do anything o

Re: jquery?

2011-10-25 Thread Luis Montes
Maintaining JS doesn't have to become a nightmare on large projects. Other toolkits besides jquery have taken things like modularity,dependency management, and modularity into account. Write in GWT if you want to write in Java. On Tue, Oct 25, 2011 at 11:33 AM, Tomasz Gawel wrote:

Re: jquery?

2011-10-25 Thread Manuel Carrasco Moñino
On Tue, Oct 25, 2011 at 8:16 PM, Dennis Haupt wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > hi there, > > a coworker told me that jquery has a bunch of advantages over gwt and > that gwt offers pretty much nothing that jquery doesn't - and is going > t

Re: jquery?

2011-10-25 Thread Dennis Haupt
/25/2011 11:16 AM, Dennis Haupt wrote: >>> hi there, >>> >>> a coworker told me that jquery has a bunch of advantages over >>> gwt and that gwt offers pretty much nothing that jquery doesn't >>> - and is going to infest our source code if i ca

Re: jquery?

2011-10-25 Thread András Csányi
On 25 October 2011 20:57, Jeff Chimene wrote: > On 10/25/2011 11:16 AM, Dennis Haupt wrote: >> hi there, >> >> a coworker told me that jquery has a bunch of advantages over gwt and >> that gwt offers pretty much nothing that jquery doesn't - and is going >>

Re: jquery?

2011-10-25 Thread Jeff Chimene
On 10/25/2011 11:16 AM, Dennis Haupt wrote: > hi there, > > a coworker told me that jquery has a bunch of advantages over gwt and > that gwt offers pretty much nothing that jquery doesn't - and is going > to infest our source code if i can't stop him. 1) There's al

Re: jquery?

2011-10-25 Thread Tomasz Gawel
hi, main gwt strong point is "maintainability, team work support, and refactoring support which comes from java and java tools (and are not specific to gwt) and are not available in javascript and not possible be available in javascript. javascript is extremely flexible and powerful scripting lan

jquery?

2011-10-25 Thread Dennis Haupt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi there, a coworker told me that jquery has a bunch of advantages over gwt and that gwt offers pretty much nothing that jquery doesn't - and is going to infest our source code if i can't stop him. has anyone here experience with both? the

jQuery plugins

2011-09-07 Thread Darnok
I've developed a jQuery widget that makes use of jQuery plugins, which works fine standalone. However, once plugged into GWT, it seems not to wait for the jQuery plugins... I load the plugins with: . . . Firebug shows them both .js files as loaded.

jQuery and GQuery - any bad interactions?

2011-08-28 Thread Tom Carchrae
rel=dialog"), 3) I want to call JS methods (eg, listview('refresh'); ) To achieve 1, is it reasonable to use GQuery to do the event binding - could there be any bad interactions when using jQuery as well? I've been checking out GQuery. It seems like a great way to do 2. JSNI

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

Re: JQuery like animation

2011-08-23 Thread VisualFox
dea 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 b

Re: JQuery like animation

2011-08-23 Thread Manuel Carrasco Moñino
uot;.gwt-button").css(CSS.VERTICAL_ALIGN.with(VerticalAlign.MIDDLE)); Enjoy gquery :-) - Manolo 2011/8/22 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

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

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 animati

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(Elem

Re: JQuery like animation

2011-08-21 Thread Nicolas Antoniazzi
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). > > Gwtquery (GQuery) is NOT JQuery nor needs to impor

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 beh

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

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");* >

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

Re: JQuery slider alternate

2011-06-15 Thread Deepak Singh
I am wrapping it currently with gwtquery and working fine. But i dont want to use JQuery at all. Thus i am looking for similar component in gwt. Any idea ? Thanks On Wed, Jun 15, 2011 at 3:59 PM, Alain Ekambi wrote: > Maybe you could just wrap that with a GWT API ? > > 2011/6/15 Dee

Re: JQuery slider alternate

2011-06-15 Thread Alain Ekambi
Maybe you could just wrap that with a GWT API ? 2011/6/15 Deepak Singh > Hi All, > > Any idea is greatly welcome. > > On Sat, Jun 11, 2011 at 4:44 PM, Deepak Singh wrote: > >> Hi All, >> >> I am using gwtquery just because of JQuery two way slider component.

Re: JQuery slider alternate

2011-06-15 Thread Deepak Singh
Hi All, Any idea is greatly welcome. On Sat, Jun 11, 2011 at 4:44 PM, Deepak Singh wrote: > Hi All, > > I am using gwtquery just because of JQuery two way slider component. I need > to know that is there any similar kind of component available in GWT/3rd > part widgets? >

JQuery slider alternate

2011-06-11 Thread Deepak Singh
Hi All, I am using gwtquery just because of JQuery two way slider component. I need to know that is there any similar kind of component available in GWT/3rd part widgets? Regards Deepak -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Re: When jquery meets gwt : GwtQuery 1.0.0 was released !

2011-05-03 Thread Gal Dolber
Really nice to hear news about GwtQuery! thank for the release On Tue, May 3, 2011 at 12:41 PM, Julien Dramaix wrote: > On behalf of the GwtQuery team, it is my pleasure to annonce the first > release of GwtQuery, after a long snapshot period. > > GwtQuery is a GWT port of jQuer

When jquery meets gwt : GwtQuery 1.0.0 was released !

2011-05-03 Thread Julien Dramaix
On behalf of the GwtQuery team, it is my pleasure to annonce the first release of GwtQuery, after a long snapshot period. GwtQuery is a GWT port of jQuery and offers plenty of cool features like css type-safe, gwt widgets interaction, complete jquery api support, and optimised css selector

Re: EXTGWT vs JQUERY

2011-05-01 Thread chris
For a gwt jquery implentation check out gwtQuery<http://code.google.com/p/gwtquery/> -- 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 unsub

Re: jquery validation in GWT

2011-04-15 Thread Julien Dramaix
If you want to use jQuery in GWT, have a look at GwtQuery project(http://code.google.com/p/gwtquery/), it is a gwt port of jQuery totally written in gwt. Julien On Apr 14, 3:21 pm, Aman sachdeva wrote: > i am trying to make validation using Jquery in GWT but the text box > value is not g

Re: jquery validation in GWT

2011-04-15 Thread scorp
Show your code. On Apr 14, 4:21 pm, Aman sachdeva wrote: > i am trying to make validation using Jquery in GWT but the text box > value is not getting the value in jquery native method. > > Any example for Jquery in gwt will be appreciated. > > Thanks -- You received this m

jquery validation in GWT

2011-04-14 Thread Aman sachdeva
i am trying to make validation using Jquery in GWT but the text box value is not getting the value in jquery native method. Any example for Jquery in gwt will be appreciated. Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

jquery jqGrid with GWT

2011-03-15 Thread ajaxDeveloper
I want to use jgQrid as my GWT widget. If anyone has done this please do help me with example code. I will be very grateful... coz i m in urgent need of that integration -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this grou

Re: jQuery based FishEye Menu bar with GWT

2011-03-07 Thread ajaxDeveloper
; Mayve i hav the code  somewhere. I ll have a look. > > Greets, > > Alain > > 2011/3/8 ajaxDeveloper > > > > > > > > > I am working on integrating jquery based FishEye Menu bar with my GWT > > application like gwtphp has done. But my all effort in

Re: jQuery based FishEye Menu bar with GWT

2011-03-07 Thread nino ekambi
I ve done this once with jqDock. All you have to do is to include the js File in your hosted Page and call the jqDock funcitions with JSNI. Mayve i hav the code somewhere. I ll have a look. Greets, Alain 2011/3/8 ajaxDeveloper > I am working on integrating jquery based FishEye Menu

jQuery based FishEye Menu bar with GWT

2011-03-07 Thread ajaxDeveloper
I am working on integrating jquery based FishEye Menu bar with my GWT application like gwtphp has done. But my all effort in vain. I successfully added jqueryui components with GWT. I need urgent help to create FishEye Menubar in GWT or integrate jQuery based FishEye Component. I am looking for

newbie: wrap a an input radio button modified by jquery

2010-12-12 Thread Ray Tayek
hi, my html person wants to use jquery. the html starts looking like: value="choice-1" checked="checked" />. this gets turned into some kind of JavaScript$ obect. i can wrap get this by id and wrap it in a simple radio button: Element on = Element.as(RootPanel.ge

Re: a quick question about using GWT and jquery

2010-11-23 Thread Xinyin
't > always as simple as replacing css style sheet. sometimes i need to use > some javascript effects. i found good jquery libraries that i should > use, but i don't if know it's possible to use them with the GWT > widgets. i know that since GWT compiles everything to java

Re: gwt using jquery effect possible?

2010-11-23 Thread bufferings
hi asianCoolz You can use jsni like following: /** * Starts the showing animation. * * @param id * The element id. */ private native void showAnimation(String id)/*-{ var options = {} var callback = th...@bufferings.ktr.wjr.client.ui.wjrpopuppanel::showCall

a quick question about using GWT and jquery

2010-11-23 Thread stewie
idea of compiling java to javascript. the only issue i'm concerning now is customizing my web application. customizing isn't always as simple as replacing css style sheet. sometimes i need to use some javascript effects. i found good jquery libraries that i should use, but i don't if

Re: gwt using jquery effect possible?

2010-11-23 Thread ciosbel
There is a clone of JQuery for gwt http://code.google.com/p/gwtquery/ Check it out, could be really helpful. On 23 Nov, 13:59, asianCoolz wrote: > �...@uihandler("buttonfire") >   void addNewWidget(ClickEvent event) { > >      htmlPanelHolder.add(new MyCusto

gwt using jquery effect possible?

2010-11-23 Thread asianCoolz
@UiHandler("buttonfire") void addNewWidget(ClickEvent event) { htmlPanelHolder.add(new MyCustomWidget(),"placeholder"); } how to use jquery so that when the MyCustomWidget() show on screen it is using jquery "fadein" effect -- You received this message

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread Brett Thomas
Well, have you programmed in java before? If not, learning GWT could be a nightmare... Are you planning to combine GWT/jQuery with a drupal/wordpress backend? If that's the case, I'd say definitely jQuery. GWT is best with single-page apps like GMail, where you switch between views with

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread András Csányi
On 19 November 2010 14:31, Jeff Schwartz wrote: > IMO both. +1 -- - - --  Csanyi Andras (Sayusi Ando)  -- http://sayusi.hu -- http://facebook.com/andras.csanyi --  ""Trust in God and keep your gunpowder dry!" - Cromwell -- You received this message because you are subscribed to the Google Gro

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread Christian Goudreau
I don't really use any jQuery plugins, but you can find some GQuery plugin here: http://code.google.com/p/gwtquery-plugins/ but maybe GQuery is / going to support jQueries plugins? I don't know, but I'm not a big fan of wrapping javascript. It makes my code harder to test with

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread ep
btw: how do you use jQuery's plugins with GQuery? I didnt found an API so had to integrate jQuery for its plugins, GQuery for better API on effects and wrapped the plugins via JSNI, but maybe GQuery is / going to support jQueries plugins? On 19 Nov., 16:41, Christian Goudreau wrote: > Pe

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread Christian Goudreau
Personally, I use both with a little distinction, I use GQuery instead of jQuery. GWT and jQuery are two different things to me and can be used in conjunction while making great web application. Cheers, On Fri, Nov 19, 2010 at 10:30 AM, Didier Durand wrote: > Hi, > > My 2 cents: > &

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread ep
i guess jquery would be best for drupal / wordpress to achieve web2.0 effects. I mean GWT can be used just as a cross compiler, i.e. if you want to build complex OOP driven masterpiece with no widgets and dont want to pseudo OOP on javascript. so its all about the problem to solve wud be good

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread Didier Durand
Hi, My 2 cents: a) learning curve for GWT higher than JQuery b) You can't work efficiently with GWT if you don't master html, http, javascript anyway... c) GWT is great because you come back to compile mode: your code is correct much faster and you don't have to write lots

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread massimo malvestio
time enough to learn gwt, or, you don't need to manage complex data exchange between client and server but you want an eye candy web gui, learn jquery, it's quite easy to learn and use and you got tons of plugins ready to be used. I use both of them anyway, because, in my opinion

Re: What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread Jeff Schwartz
am a bit confused whether I should put > more time in > > google web toolkit + drupal / word press > > > or > > jquery + drupal / wordress > > > Thank you in advance for sharing your views, > Kachaloo > > -- > You received this message because you are sub

What should I learn , Google Web Toolkit or Jquery ?

2010-11-19 Thread kachaloo
press or jquery + drupal / wordress Thank you in advance for sharing your views, Kachaloo -- 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-tool...@googlegroups.com. To unsubscribe

Re: Including jQuery in GWT

2010-11-09 Thread ciosbel
I don't know if it's helpful or (given your already coded js) usable, but there is a clone of jquery for gwt. It's called GQuery. Take a look http://code.google.com/p/gwtquery/ On 9 Nov, 21:58, Yaakov wrote: > Hi, > > I have a page that a web designer produced and now I n

GWT/jquery article...

2010-10-16 Thread golfdude
"I definitely feel like jQuery is the leading framework these days," said Matt Raible, Web architect. "On my last three projects I've used GWT and jQuery. While GWT is a lot easier for Java developers, jQuery is loved by Web Developers." http://searchsoa.techtarget.

Re: GWT + JQuery

2010-10-15 Thread Julien Dramaix
Use gwtquery for the reasons explain by Falcon. If you need functionnalities present in jquery not yet implemented in gwtquery, feel free to open an issue on gwtquery website (http://code.google.com/ p/gwtquery/) although almost the jQuery API is written. On Oct 13, 4:53 pm, Falcon wrote: >

RE: GWT + JQuery

2010-10-14 Thread Feldman, Nir (48Upper)
Subject: GWT + JQuery Hi all, To develop a gwt application with jquery code embeded wich is the best option? and why? a) Use gwtquery-1.0-SNAPSHOT.jar lib b) Use jquery.js directly Thanks a lot! Ignasi -- You received this message because you are subscribed to the Google Groups "Googl

Re: GWT + JQuery

2010-10-14 Thread cokol
as for me, I took both, gwtquery and jquery in my app, because I wanted to use gwtquery's API in my javacode for some effects, but I could not get some jquery plugins to work, so for those I just took jQuery and written a small wrapper for the plugin to initilize from java On 13 Okt.,

Re: Gwt + JQuery

2010-10-13 Thread marius.andreiana
> > Hi all, > > > To develop a gwt application with jquery code embeded wich is the best > > option?  and why? > > > a) Use gwtquery-1.0-SNAPSHOT.jar lib > > b) Use jquery.js directly > > > Thanks a lot! > > Ignasi I'm copy-pasting some

Re: Gwt + JQuery

2010-10-13 Thread ams
You might want to look into GQuery. Here is a video link: http://www.youtube.com/watch?v=sl5em1UPuoI http://code.google.com/p/gwtquery/ http://www.gwtsite.com/gwt-jquery-gquery/ On Oct 13, 4:35 am, null wrote: > Hi all, > > To develop a gwt application with jquery code embeded wi

Re: GWT + JQuery

2010-10-13 Thread Falcon
If you use gwtquery, you can do all of your code directly in Java and GWT will be able to compile it. If you use jQuery directly, you'll have to wrap the jQuery calls in JSNI (although you can wrap them in GWT Java functions and use those too in some cases), so GWT won't be able to o

GWT + JQuery

2010-10-13 Thread Ignasi
Hi all, To develop a gwt application with jquery code embeded wich is the best option? and why? a) Use gwtquery-1.0-SNAPSHOT.jar lib b) Use jquery.js directly Thanks a lot! Ignasi -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

  1   2   >