For me it was a problem with my vocabulary which works in this form...

class ClipboardVocabFactory(object):
    implements(IVocabularyFactory)

    def __call__(self, context):

        terms = [(x.title, x) for x in \
Session().query(ArchiveObject).select()]
        voc = SimpleVocabulary.fromItems(terms)
        return voc

I clearly need to understand vocabulary construction better.

Did you ever figure out how to omit fields from a subwidget?

Rupert
_______________________________________________
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users

Reply via email to