[Seaside] A Comix web application

Richard Durr richard.durr at googlemail.com
Tue Mar 23 16:00:40 UTC 2010


.left, .right { width: 48% }
.left { float: left }
.right: {float: right }

Could work.


On Tue, Mar 23, 2010 at 4:14 PM, Michael Delache <vladmanchev at gmail.com> wrote:
> 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
> _______________________________________________
> seaside mailing list
> seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>


More information about the seaside mailing list