[Seaside] use of list

Philippe Marschall philippe.marschall at gmail.com
Thu Mar 9 11:17:47 UTC 2006


> How to do it ?

this shortcut should work (untested)

html unorderedList: aCollection selected: nil callback: [ :dummy |
Smalltalk beep ]

alternatively you can do it "by hand" (again untested):

html unorderedList: [
    aCollection do: [ :each |
        html listItem: [
                html anchorWithAction: [Smalltalk beep] do: each ]

Cheers
Philippe


More information about the Seaside mailing list