当前位置: 代码迷 >> SharePoint >> sharepoint展示附件
  详细解决方案

sharepoint展示附件

热度:125   发布时间:2016-05-02 07:20:46.0
sharepoint显示附件
两个要求:
          1.list中打开item时,附件可以直接显示在内容后面或者可以预览。
          2.list不能下载。
望大侠帮忙求解。
不要一开口,就说什么开发,vs可以实现,这种有说跟没说的话,谢谢。

------解决方案--------------------
如果你的附件都是Office(Word, Excel, PPT等)且你装了Office Web App的话可以尝试下列方案: 
使用JavaScript客户化该列表的View Form: 用 JavaScript找到附件的连接<a>,然后使用Office Web App的连接替换原有连接地址:

http://servername/_layouts/WordViewer.aspx?id=/Shared%20Documents/test.docx.
 
Word: http://servername/_layouts/WordViewer.aspx?id=/Shared%20Documents/test.docx.
 
Excel: http://servername/_layouts/xlViewer.aspx?id=/Shared%20Documents/test.xlsx.
 
PPT: http://servername/_layouts/PowerPoint.aspx?PowerPointView=ReadingView&PresentationId=/Shared%20Documents/test.pptx.


http://social.technet.microsoft.com/forums/en/sharepointcustomizationprevious/thread/b44f2d37-34d6-4bfe-aa79-a5e02c5b02ec
  相关解决方案