我有一个"父"列表和一个"子"列表,由查找列链接。

这两个列表都禁用了"在模态对话框中显示"。

在主页上,我有一个listview web部件,显示"子"列表,其中一些字段包括查找到父列。

当我点击此列时,它向我显示父项,但在模态对话框中。

我怎样才能避免这种模式对话框?

有帮助吗?

解决方案

您可以通过在spd中编辑xslt来执行此操作,即您应该更改 <xsl:value-of select> 标记并添加周围 <a>

<a href="http://vxmc2170345/Lists/facilty/DispForm.aspx?ID={substring-after($thisNode/@IDofListX., '#')}">
    <xsl:value-of select="substring-after($thisNode/@IDofListX. , '#')"/> </a>

更多细节: http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/thread/5eec99a9-abd7-45c9-9d11-9eae5062851b

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