在页面模板表单中输入数据行
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用文本区域而不是输入标记,并通过 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