Plone4 的原型 AutoCompleteWidget

发布于 2024-11-17 23:59:38 字数 94 浏览 2 评论 0原文

我的自定义原型内容类型需要自动完成小部件,但我尚未找到与此兼容的 Plone 4 产品。有什么建议吗?或者,如果我必须升级那些旧的小部件产品,有什么好的示例或资源可以提示吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子的影子 2024-11-24 23:59:38

我在 plone 4.0.7 项目中使用 Products.AutocompleteWidget 1.3,该项目已从 3.3.x 迁移,并且运行良好。所以没必要升级它。

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,
            )
        )

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,
            )
        )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文