[Seaside] Component confusion

Boris Popov boris at deepcovelabs.com
Wed Aug 2 16:22:48 UTC 2006


Jason,

Welcome to the Light Side :) Check these links out for the explanation,

http://www.shaffer-consulting.com/david/Seaside/Embedding/index.html
http://www.motionobj.com/seasidefaq/ComponentsNotFoundWhileProcessingCal
lbacks
http://www.motionobj.com/seasidefaq/RegisteringASubcomponent

You must be doing render: component somewhere but that component is not
included in the #children method of the container component.

Hope this helps,

-Boris

-- 
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5

boris at deepcovelabs.com

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message
header. Unless otherwise indicated, it contains information that is
private and confidential. If you have received it in error, please
notify the sender and delete the entire message including any
attachments.

Thank you.

-----Original Message-----
From: seaside-bounces at lists.squeakfoundation.org
[mailto:seaside-bounces at lists.squeakfoundation.org] On Behalf Of Jason
Johnson
Sent: Wednesday, August 02, 2006 9:14 AM
To: seaside at lists.squeakfoundation.org
Subject: [Seaside] Component confusion

Hello all,
 
I have just started using seaside, and I must say I am very impressed.
I have been able to fix all the problems I have ran into so far but now
I tried to make a new component and there seems to be something wrong
with it.  I am confused because it seems to me like any other component
(im using the Store example as a reference).  The message I get is
"Error. Components not found while processing callbacks:#(a WANavBar)".
 
What my component is trying to do is be the main navagation component
for a site I will eventually build.  It is a very simple class at the
moment.  It inherits from WAComponent and it has two instance variables:
items (the list items) and activeItem.  Here is the renderOn: method:
 
renderContentOn: html
            html divNamed: 'navcontainer' with: [
                        html cssId: 'navlist'; unorderedList: [
                                   items do: [:item| 
                                               (item = activeItem)
ifTrue: [ html cssId: 'active'].
                                               html listItem: [
                                                           html
anchorWithAction: [self activeItem: item ] text: item
                                               ]
                                   ]
                        ] 
            ].
 
As you can see, all I'm trying to do is make a CSS aware navagation so
that the designer can just do his thing with CSS without having to
figure out how it gets made.  I want any part of the site to use this.
I tried it in another test application where it does:
 
navBar := WANavBar new.
navBar items: #('Item one' 'Item two').
navBar activeItem: 'Item one'.
 
When I click on either item I get the above error.
 
Thanks very much for your help,
Jason


More information about the Seaside mailing list