2011-06-30 30 views
1

我的自定義原型內容類型需要自動填充小部件,但我還沒有找到與此相關的Plone 4兼容產品。任何建議?或者,如果我不得不升級這些舊的窗口小部件產品,有什麼好的示例或資源提示?Pluto4的Archetypes AutoCompleteWidget

+1

http://pypi.python.org/pypi/Products.AutocompleteWidget看起來像它的Plone 4兼容的,你有沒有嘗試一個了嗎?你還試過了什麼,你遇到了什麼問題? –

回答

2

我在一個已經從3.3.x遷移過來的plone 4.0.7項目中使用Products.AutocompleteWidget 1.3,它工作得很好。所以不需要升級它。

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, 
      ) 
     ) 
相關問題