jQuery tutorial

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
11 messages Options
Reply | Threaded
Open this post in threaded view
|

jQuery tutorial

Jeff Gray
Is there a good resource for learning jQuery in seaside? I'm especially interested in how to use widgets other than those that are bundled with seaside. Eg a gantt chart widget.
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Paul DeBruicker
Not a tutorial per se but you could always look at how the widgets and
examples in the JQueryWidgetBox project are implemented:

http://smalltalkhub.com/#!/~Seaside/JQueryWidgetBox

There are 32 to choose from right now. I think each widget has a
functional example.  Also there is a link on that page to a forum post
that describes how to add your own.


Good luck






On 09/20/2013 03:19 PM, Jeff Gray wrote:

> Is there a good resource for learning jQuery in seaside? I'm especially
> interested in how to use widgets other than those that are bundled with
> seaside. Eg a gantt chart widget.
>
>
>
>
> --
> View this message in context: http://forum.world.st/jQuery-tutorial-tp4709448.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Dave
In reply to this post by Jeff Gray
Hi Jeff,
 Unfortunately, as Paul said, there isn't a tutorial on JQuery. To learn almost the basics you can see a video of Julian Fitzel and Lukas Renggli some years ago at ESUG, http://www.esug.org/data/ESUG2009/Video-Alternative/M2U00065.mp4 , slides here: http://www.slideshare.net/esug/jquery-in-seaside

There's also some information here http://book.seaside.st/book/web-20/jquery

Cheers
Dave

Jeff Gray wrote
Is there a good resource for learning jQuery in seaside? I'm especially interested in how to use widgets other than those that are bundled with seaside. Eg a gantt chart widget.
Reply | Threaded
Open this post in threaded view
|

AW: [Seaside] Re: jQuery tutorial

Georg Heeg
Alternatively, you could use seaBreeze which uses JQuery behind the scenes.

Georg

Georg Heeg eK, Dortmund und Köthen, HR Dortmund A 12812
Wallstraße 22, 06366 Köthen
Tel. +49-3496-214328, Fax +49-3496-214712


-----Ursprüngliche Nachricht-----
Von: [hidden email]
[mailto:[hidden email]] Im Auftrag von Dave
Gesendet: Sonntag, 22. September 2013 01:54
An: [hidden email]
Betreff: [Seaside] Re: jQuery tutorial

Hi Jeff,
 Unfortunately, as Paul said, there isn't a tutorial on JQuery. To learn
almost the basics you can see a video of Julian Fitzel and Lukas Renggli
some years ago at ESUG,
http://www.esug.org/data/ESUG2009/Video-Alternative/M2U00065.mp4 , slides
here: http://www.slideshare.net/esug/jquery-in-seaside

There's also some information here http://book.seaside.st/book/web-20/jquery

Cheers
Dave


Jeff Gray wrote
> Is there a good resource for learning jQuery in seaside? I'm
> especially interested in how to use widgets other than those that are
> bundled with seaside. Eg a gantt chart widget.





--
View this message in context:
http://forum.world.st/jQuery-tutorial-tp4709448p4709575.html
Sent from the Seaside General mailing list archive at Nabble.com.
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: AW: [Seaside] Re: jQuery tutorial

Jeff Gray
When I do this:

Gofer new
    url: 'http://smalltalkhub.com/mc/Seaside/JQueryWidgetBox/main';
    package: 'ConfigurationOfJQueryWidgetBox';
    load.

(Smalltalk at: #ConfigurationOfJQueryWidgetBox) project stableVersion load


I get this:

GRPackage(Object)>>doesNotUnderstand: #includesSelector:ofClassName:

IS that bad? :-)
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Paul DeBruicker
What version of Squeak or Pharo are you using?


Does anything in the image implement #includesSelector:ofClassName: ?



On Oct 3, 2013, at 5:50 AM, Jeff Gray <[hidden email]> wrote:

> When I do this:
>
> Gofer new
>    url: 'http://smalltalkhub.com/mc/Seaside/JQueryWidgetBox/main';
>    package: 'ConfigurationOfJQueryWidgetBox';
>    load.
>
> (Smalltalk at: #ConfigurationOfJQueryWidgetBox) project stableVersion load
>
>
> I get this:
>
> GRPackage(Object)>>doesNotUnderstand: #includesSelector:ofClassName:
>
> IS that bad? :-)
>
>
>
> --
> View this message in context: http://forum.world.st/jQuery-tutorial-tp4709448p4712182.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Jeff Gray
Sorry Paul. Poor form :-)
I'm using a fresh Pharo 2 image with Seaside and Fuel.

Nothing is sending #includesSelector:ofClassName:
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Jeff Gray
Since it was GRPackage I thought perhaps reinstalling Seaside would help but then I got the same error there too.
Hmmmm.
 
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Johan Brichau-2
Are starting from a fresh Pharo20 image and evaluating the following?

Gofer new
   url: 'http://smalltalkhub.com/mc/Seaside/JQueryWidgetBox/main';
   package: 'ConfigurationOfJQueryWidgetBox';
   load.

(Smalltalk at: #ConfigurationOfJQueryWidgetBox) project stableVersion load

If you have other things loaded, you might want to check:
- the version of Grease that was loaded (if so)
- if ConfigurationOfSeaside30 is present (instead of ConfigurationOfSeaside3)

cheers
Johan

On 04 Oct 2013, at 11:10, Jeff Gray <[hidden email]> wrote:

> Since it was GRPackage I thought perhaps reinstalling Seaside would help but
> then I got the same error there too.
> Hmmmm.
>
>
>
>
> --
> View this message in context: http://forum.world.st/jQuery-tutorial-tp4709448p4712413.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Jeff Gray
Brand spanking new image. Seaside loaded and then widgetbox loaded. All good. Sorry for wasting time :-)
Reply | Threaded
Open this post in threaded view
|

Re: jQuery tutorial

Johan Brichau-2
Not a problem

Glad it works :-)

On 04 Oct 2013, at 15:26, Jeff Gray <[hidden email]> wrote:

> Brand spanking new image. Seaside loaded and then widgetbox loaded. All good.
> Sorry for wasting time :-)
>
>
>
>
> --
> View this message in context: http://forum.world.st/jQuery-tutorial-tp4709448p4712470.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside