list SharePoint 列表中的多个附件列
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1184024/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Multiple attachments columns in SharePoint lists
提问by Marius
What I need is to clearly differentiate between the attachments (this is an approval, this is an offer, this is a PO, etc). Is this possible, or it is working only in bulk (attach all files together)?
我需要的是清楚地区分附件(这是批准,这是要约,这是采购订单等)。这是可能的,还是只能批量工作(将所有文件附加在一起)?
Thanks,
谢谢,
采纳答案by Rob Elliott
You could create separate lists for each item requiring an attachment, then link those lists in a master table.
您可以为需要附件的每个项目创建单独的列表,然后在主表中链接这些列表。
回答by dahlbyk
SharePoint does not support attachment metadata. I would suggest storing the attachments in a document library (probably with Content Types for Approval, Offer, PO, etc) with a lookup column to the associated item in your list.
SharePoint 不支持附件元数据。我建议将附件存储在文档库中(可能包含审批、报价、采购订单等的内容类型),并在您的列表中提供相关项目的查找列。
回答by Bhanu
There are two option.
有两种选择。
- Add as many attachment you want to attachment column with the list. but you cannot associate metadata with that.
- Create document library and use lookup in the list to view name of the document. so in a way it is storing the common document in library and just refer which one you are supposed to use.
- 添加尽可能多的附件到带有列表的附件列。但你不能将元数据与它相关联。
- 创建文档库并使用列表中的查找来查看文档的名称。所以在某种程度上它将公共文档存储在库中,只需参考您应该使用的那个。
Custom code is another one.
自定义代码是另一个。