根据文档库中的文档更改主页上的图片
我必须在共享点网站的主页上显示带有链接的图片。 我还有一个文档库,其中包含名为 status 的自定义字段。 当库中存在状态为“活动”的文档时,图片应为红色,并带有指向该文档的链接。 当没有活动文档时,图片应为蓝色并指向库。 有任何想法吗???
I have to display a picture with a link on the masterpage of a sharepoint site. I also have a document library with a custom field named status. When in the library exists a document with the status "Active" the picture should be red with the link pointing to the document. When there is no Active document the picture should be blue and pointing to the library. Any ideas???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以内联内容查询或 DataView Web 部件。 导出内容查询 Web 部件以覆盖 xslt 的链接。 您将需要创建自己的 xslt 文件(我的偏好)或向现有文件添加新样式。
Xslt 足够灵活,可以确定列表中是否存在“活动”文档,并且它显示的 html 可以完全不同。
对于初学者:
http://msdn.microsoft.com/en-us/library /bb850574.aspx
http://msdn.microsoft.com/ en-us/library/bb447557.aspx
You could inline a content query or DataView webpart. Export the content query webpart to override the link to the xslt. You will need to create your own xslt file (my preference) or add a new style to the existing one.
Xslt is flexible enough to determine if there is an "active" document in the list and the html it displays can then be completely different.
For starters:
http://msdn.microsoft.com/en-us/library/bb850574.aspx
http://msdn.microsoft.com/en-us/library/bb447557.aspx