Hi Philipee, thanks for responding to my post. &nbsp;For example, in&nbsp;Shaffer&#39;s tutorial, he did something similar to the following:<div><br>&nbsp;</div><div>WAComponent subclass: #PersonalInformationView<br><div><br class="webkit-block-placeholder">
</div><div>model</div><div>&nbsp;&nbsp;^model</div><div><br class="webkit-block-placeholder"></div><div>model</div><div>&nbsp;&nbsp;model := anObject</div><div><br class="webkit-block-placeholder"></div><div>WAComponent subclass: #AddressBook
</div><div><br class="webkit-block-placeholder"></div><div>edit: &nbsp;aPerson &nbsp;</div><div>&nbsp;&nbsp; |view|</div><div>&nbsp;&nbsp; view := PersonalInformationView new.</div><div>&nbsp;&nbsp; view model: &nbsp;aPerson</div><div>&nbsp;&nbsp; self call: view.</div><div><br class="webkit-block-placeholder">
</div><div>Thus, I take it that one needs to have accessors on the view if you&#39;re wanting to modify an instance of a model. &nbsp;Now, each renderContentOn: represents a single view.</div><div><br class="webkit-block-placeholder">
</div><div>-Conrad</div><div><br>&nbsp;</div><div>On 8/29/07, <b class="gmail_sendername">Philippe Marschall</b> &lt;<a href="mailto:philippe.marschall@gmail.com">philippe.marschall@gmail.com</a>&gt; wrote:</div><div><div><div>
<blockquote class="gmail_quote" style="margin:0;margin-left:0.8ex;border-left:1px #ccc solid;padding-left:1ex">2007/8/29, Conrad Taylor &lt;<a href="mailto:conradwt@gmail.com">conradwt@gmail.com</a>&gt;:<br>&gt; Hi, I have created a subclass of WAComponent.&nbsp;&nbsp;Also, I have a class that
<br>&gt; represents a model and is a subclass of Object.&nbsp;&nbsp;Thus, I was wondering,<br>&gt; what&#39;s the best way to connect the my model to my component?&nbsp;&nbsp;BTW, I have<br>&gt; read the C. David Shaffer&#39;s tutorial, &quot;Interlude:&nbsp;&nbsp;Cleaning up the
<br>&gt; PersonalInformationView&quot; and I&#39;m just trying to see what the best approach<br>&gt; for this.&nbsp;&nbsp;Well, thanks in advance.<br><br>In general the view components directly reference the model, e.g. from<br>an instance variable.
<br><br>Cheers<br>Philippe<br><br>&gt; -Conrad<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; Seaside mailing list<br>&gt; <a href="mailto:Seaside@lists.squeakfoundation">
Seaside@lists.squeakfoundation</a>.org<br>&gt; <a href="http://lists.squeakfoundation">http://lists.squeakfoundation</a>.org/cgi-bin/mailman/listinfo/seaside<br>&gt;<br>&gt;<br>_______________________________________________
<br>Seaside mailing list<br><a href="mailto:Seaside@lists.squeakfoundation">Seaside@lists.squeakfoundation</a>.org<br><a href="http://lists.squeakfoundation">http://lists.squeakfoundation</a>.org/cgi-bin/mailman/listinfo/seaside
<br></blockquote></div><br></div></div></div>