Ok, no problem.
I'm going to describe the beginner's way to make tabs with jQuery.
berries (or whatever you want to display in the tabs)
It's a bit of a mess but I hope this help guys. :-) (should be nicer with Word or OpenOffice)
Tell me if there are mistakes. cheers alex
2010/12/20 Fritz Schenk <[hidden email]> alexandre, would you mind summarizing? _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Very kind of you including these instructions. I will follow as soon as I recover
from installing 3.0.3. My IDE is hosed; see below the thread about updating to 3.0.3 According to the documentation the two libraries are included but do not show up in the browser; how do I load them? Monticello? _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Actually I didn't have to do anything. I just add the two lines in the method initialize and it worked fine.
I started with pharo and added the seaside package with the following code: Gofer new cheers alex 2010/12/20 Fritz Schenk <[hidden email]> Very kind of you including these instructions. I will follow as soon as I recover _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Sorry I didn't see the post about seaside 3.0.3 but I guess it will be the same :-)
2010/12/20 alexandre bp <[hidden email]> Actually I didn't have to do anything. I just add the two lines in the method initialize and it worked fine. _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Is 'WUserSession' 'WASession'?
Or should I define my one WAUserSession inheriting from WASession? Thanks _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
WUserSession inherits from WASession.
It's a way to get the current user of the session.
2010/12/21 Fritz Schenk <[hidden email]> Is 'WUserSession' 'WASession'? _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thanks Alexandre,
I will be defining a WUserSession as in my image as it does not exist. It will inherit from WASession with its own initialize (instance) and one instance variable 'currentUser' <code> "The following is from Cincom's tutorial code - so it follows their namespace syntax" MyJQueryTestsCategory defineClass: #WUserSession superclass: #WASession indexedType: #none private: false instanceVariableNames: 'currentUser ' classInstanceVariableNames: '' imports: '' category: ' WUserSession>>initialize "Initialize a newly created instance. This method must answer the receiver." "Taken from Cincom tutorial's code" super initialize. " *** Edit the following to properly initialize instance variables ***" currentUser := nil. " *** And replace this comment with additional initialization code *** " ^self </code I appreciate your following and comments. _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |