[Zope] Using a multiple_selection property in a product
Ronald L. Roeber
rroeber1@unl.edu
Thu, 04 Jan 2001 09:08:22 -0600
Randall,
Thank you very much. Exactly right.!Thanks for taking the time to help.
"Randall F. Kern" wrote:
> Try this:
>
> _properties = (....
> {'id':'classdays', 'type':'multiple selection','mode':'w',
> 'select_variable': 'days'},
> ...)
>
> days = (
> 'Monday',
> 'Tuesday',
> 'Wednesday',
> 'Thursday',
> 'Friday'
> )
>
> -Randy
>
> -----Original Message-----
> From: Ronald L. Roeber [mailto:rroeber1@unl.edu]
> Sent: Wednesday, January 03, 2001 2:48 PM
> To: zope@zope.org
> Subject: [Zope] Using a multiple_selection property in a product
>
> I am attempting to build a product that will contain some unique
> information ...
>