是否需要填充 Plon SelectionWidget?

发布于 2025-01-04 03:05:44 字数 438 浏览 0 评论 0原文

我想在稍后填充的表单上放置一个空的选择小部件。代码如下:

atapi.StringField(

    'catalognumber1',
    storage=atapi.AnnotationStorage(),
    widget=atapi.SelectionWidget(
        label='Catalog Number 1',
        description=_(u"Please select the catalog number for your first conflicting class, e.g. 101"),
    ),
    required=1,
    searchable=True, 
),

没有框显示,实际上什么也没有显示。是否需要预先填充选择小部件?

I would like to put an empty selection widget on a form that will be populated later. Here is the code:

atapi.StringField(

    'catalognumber1',
    storage=atapi.AnnotationStorage(),
    widget=atapi.SelectionWidget(
        label='Catalog Number 1',
        description=_(u"Please select the catalog number for your first conflicting class, e.g. 101"),
    ),
    required=1,
    searchable=True, 
),

No box shows, actually, nothing shows. Does a selection widget need to be pre-populated?

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

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

发布评论

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

评论(1

小猫一只 2025-01-11 03:05:44

是的,至少放置一个空词汇

atapi.StringField(
'目录号1',
存储=atapi.AnnotationStorage(),
词汇=( ('', '') ),

稍后用一个好的词汇代替它(更好:词汇工厂)

Yes, put at least an empty vocabulary

atapi.StringField(
'catalognumber1',
storage=atapi.AnnotationStorage(),
vocabulary=( ('', '') ),

Later, substitute this with a good vocabulary (better: a vocabulary_factory)

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