I have a property sheet with a selection property "band" with value
"bandlist".
I created an instance of the class in a Zope folder and created the bandlist
method in the same folder. When I go to the property sheet of the instance
the selection is not populated.
My bandlist method looks like this:
<dtml-call "REQUEST.set('bndlist',[])">
<dtml-in "objectItems('Band')">
<dtml-call "bndlist.append(name)">
</dtml-in>
<dtml-return bndlist>
If I view the method it returns the list eg: ['item1','item2','item3'].
What can be wrong?
Roché
_______________________________________________
Zope maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope-dev )