在页面模板表单中输入数据行

发布于 2024-12-20 11:46:11 字数 392 浏览 0 评论 0原文

我有一个 CMF 操作来编辑自定义原型类型元数据,其中作者是要编辑的字段之一。编辑表单模板中的以下代码适用于 StringFiled:

<input type="text"
       name="new_author:list"
       value="author"
       size="40"
       tal:condition="canModifyItem"
       tal:attributes="value obj/getAuthor;
       id string:${item}_author;" />

如果我使用 LinesField 而不是 StringField 将字段从“作者”更改为“作者”,如何更新模板以输入多行数据(每行一个名称)?

I have a CMF Action to edit custom archetype type metadata, where author is one of the fields to be edited. The following code in editing form template is for StringFiled:

<input type="text"
       name="new_author:list"
       value="author"
       size="40"
       tal:condition="canModifyItem"
       tal:attributes="value obj/getAuthor;
       id string:${item}_author;" />

If I change the field from 'author' to 'authors', using LinesField instead of StringField, how can I update the template for input multiple lines of data (one name per line)?

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

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

发布评论

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

评论(1

得不到的就毁灭 2024-12-27 11:46:11

您必须使用文本区域而不是输入标记,并通过 split('/n') 解析输入数据以获得输入行的列表。

还,
而不是 tal:attributes="value... 你必须使用 tal:content="obj/getAuthor"

hth

you have to use a textarea, instead of input tag, and parse the input data through a split('/n') in order to get a list of inputed lines.

also,
instead of tal:attributes="value... you have to use tal:content="obj/getAuthor"

hth

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