My custom archetypes content types need autocomplete widget, but I do not yet find Plone 4 compatible product on this. Any suggestion? Or, if I have to upgrade those old widget products, any good examples or resources to hint?

link|improve this question

1  
pypi.python.org/pypi/Products.AutocompleteWidget looks like it's Plone 4 compatible, did you try that one already? What else did you try, what problems did you encounter? – Martijn Pieters Jun 30 '11 at 10:32
feedback

1 Answer

up vote 1 down vote accepted

I'm using Products.AutocompleteWidget 1.3 in a plone 4.0.7 project that has been migrated from 3.3.x and it works out well. So no need to upgrade it.

relatedTopicsField = ReferenceField(
        name = 'relatedTopics',
        relationship = 'belongsToTopics',
        multiValued = True,
        isMetadata = True,
        index = 'KeywordIndex',
        write_permission = ModifyPortalContent,
        allowed_types = ['MyType'],
        vocabulary_factory = 'my.types.TopicVocabulary',
        enforceVocabulary = 1,
        required = True,
        widget = AutocompleteWidget(
            label = _(u"Topics"),
            description = _(u"Choose the topics this item is related to."),
            visible = {'edit' : 'visible', 'view' : 'invisible' },
            actb_timeout = 50000,
            actb_lim = 7,
            )
        )
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.