<font color="#000000"><font size="2"><font face="arial narrow,sans-serif">Hello everyone!<br>My name is Gastón Charkiewicz, I&#39;m from Argentina, and I study IT 
Programming in de Quilmes National University (UNQ). I&#39;m developing a 
certain domain in Seaside, and I want to model a folder hierarchy using a
 WATree (I&#39;m just starting to use it).<br>
I have a &quot;Folder&quot; class, who haves a instance variable, &quot;folders&quot;, a 
SortedCollection (sortBlock given) with more Folder s. So, I prepared a 
component called WAFolderTree, extending from WATree. It haves an 
instance variable, &quot;folders&quot;, with the folder hierarchy it&#39;s going to 
show. I have this initialize mehod:<br>
<br><b>initialize</b><br>super initialize.<br>folders := Folder new.<br>folders folderName: &#39;root&#39;.<br>folders subFolders add: (Folder new folderName: &#39;var&#39;).<br>folders subFolders add: (Folder new folderName: &#39;usr&#39;).<br>


<br>    self<br>    root: folders;<br>    labelBlock: [:f | f folderName];<br>    childrenBlock: [:f | f subFolders];<br>    yourself.<br><br>(I&#39;m just testing the class&#39; vehaviour, I&#39;m going to make it a Singleton class after testings, and make it beautier also :) ).<br>


<br>The problem: when I render the containing window, I also render the tree using<br><b>html render: WAFolderTree new.</b><br>...but I just get in screen &quot;WAFolderTree&quot;. No +, even no selecting points. Could you help me?<br>


<br>Thank you all!<br>Best regards,<br clear="all"></font></font></font><br>-- <br>Gastón N. Charkiewicz<br><span style="font-family:&#39;Trebuchet MS&#39;, Verdana, Arial, sans-serif;font-size:13px;line-height:18px">&quot;El éxito parece estar relacionado con la acción. Las personas de éxito son activas. Cometen errores pero no se rinden.&quot; Conrad Hilton</span><br>