[Seaside] A Comix web application

Michael Delache vladmanchev at gmail.com
Tue Mar 23 15:14:09 UTC 2010


Hi,

  I'm learning smalltalk and seaside and I need your help.

  I'm writing a web application in order to manage comix books.
I got a working code so far and now I would like to get a good looking
application.
I have a list of comix (shown by their author's name) and a comix (like
defined in my model, but I will, after that, show all info in place of that)
just behind the list.

What I would like is to have the list on the left and the comix details on
the right but at same level.

So far, I wrote a 'style' methode like that :

style
>     ^ '
>     .left { text-align: left; }
>     .right { text-align: right}
>     '
>


and in my 'renderContentOn', I have :

    html div
>         class: 'left';
>         with: [
>             "rendering the list"
>         ]
>
...

>     html div
>         class: 'right';
>         with: [
>             "rendering the comix details"
>         ]
>

If you want, you can take a look at my application at
http://mdelache.seasidehosting.st/seaside/BDTest
but it's a little bit lagging
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20100323/11461c85/attachment.htm


More information about the seaside mailing list