How do you do this in Seaside?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

How do you do this in Seaside?

Rick Flower
I'm wondering how to generate something like :

<p class="legend_lookalike">Personal Details</p>

in Seaside.. I poked around in the Seaside package with the browser but
didn't see anything for these.. Any help
would be greatly appreciated!

-- Rick

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: How do you do this in Seaside?

Avi  Bryant

On Feb 24, 2006, at 10:08 PM, Rick Flower wrote:

> I'm wondering how to generate something like :
>
> <p class="legend_lookalike">Personal Details</p>
>
> in Seaside.. I poked around in the Seaside package with the browser  
> but didn't see anything for these.. Any help
> would be greatly appreciated!

Using the Canvas API:

html paragraph
            class: 'legend_lookalike';
            with: 'Personal Details'

Avi
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: How do you do this in Seaside?

Rick Flower
Avi Bryant wrote:
> Using the Canvas API:
>
> html paragraph
>            class: 'legend_lookalike';
>            with: 'Personal Details'
Thanks Avi!
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside