[Seaside] Body tag attributes

Nevin Pratt nevin@smalltalkpro.com
Wed, 24 Apr 2002 10:18:55 -0600


Avi Bryant wrote:

>
>addBindingsTo: template
>  (template elementNamed: 'body')
>    set: #background to: 'http://test.com/mybackgroundimage.jpg'
>
>Far from ideal, I know.
>
>Cheers,
>Avi
>
>_
>

For some reason, I have to put a tilde before the 'body', thus:

   (template elementNamed: '~body')

Otherwise I get a DNU.

I'll try to track down why when I have time.

Nevin