我试图找到一种方法来在子站点中列表中的一行中显示信息的方法

Senerio是我们编写了许多工作的提案,我们有一个网站,将信息保留给每个提案的所有提案和子站点

我想在该子网站的主页上显示每个用户的提案条目,但它看起来似乎没有良好的方式来做这个

我有完全访问网站,以便我可以使用SharePoint Designer,但我只是不确定如何启动(SharePoint对我来说是新的)

(如果您的答案允许我格式化文本:))

有帮助吗?

解决方案

The Content Query Web Part will display content from a list in a parent site. You can filter it using a field on the page. You will need to create a page layout that includes a field you can use to filter by - this will be using SPD. You will then need to create a page using that page layout for each subsite and add the correct filter value to each one. You can either add the CQWP to the page layout or add it as a web part to each page.

You will then filter the CQWP using PageFieldValue: FieldName.

That said, it seems to me that if you have a sub-site for each proposal then you may actually be better creating a roll-up at the parent level and storing all the proposal details in the sub-site?

许可以下: CC-BY-SA归因
scroll top