Hi,<br><br>  In order to write a web application for comix management, I tested a simple web page with an anchor which, when clicked, show all comix with name beginning by &#39;B&#39;<br><br>  Here is my code :<br><br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">
renderContentOn: html<br>    | bdsSelected |<br>    &quot;A mettre autre part dans la suite&quot;<br>    BDBase load.<br>    html anchor<br>        callback: [self renderBdsByLetter:&#39;B&#39; on: html];<br>        with: &#39;B&#39;.<br>
</blockquote><div><br>and the &#39;renderBdsByLetter: on:&#39; method<br><br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">renderBdsByLetter:aLetter on: html<br>
    | bdsSelected |<br>    bdsSelected := (BDBase baseNamed: #BD) elements select: [:bd | (bd authors) beginsWith: &#39;B&#39;].<br>    html unorderedList: [<br>      bdsSelected do: [ :bd |<br>          html listItem: [self render: bd on: html] ] <br>
    ].<br></blockquote> </div><br>When I click on the anchor, I get error : UndefinedObject(Object)&gt;&gt;doesNotUnderstand: #openTag:attributes:closed:<br><br><br>How could I get what I want? Everything you can do for me will be good (ideas, examples, tutorials...)<br>
<br>Thanks<br>