Skip to content

Instantly share code, notes, and snippets.

@pretentiousgit
Last active March 28, 2018 19:52
Show Gist options
  • Save pretentiousgit/6002167 to your computer and use it in GitHub Desktop.
Save pretentiousgit/6002167 to your computer and use it in GitHub Desktop.
Sharepoint 2010 CQWP debug mode, based on Heather Solomon's customizations. Add to ItemStyle.xsl for instant reveal of what your CQWP is actually rolling up.
<xsl:template name="DebugMode" match="Row[@Style='DebugMode']" mode="itemstyle">
<xsl:for-each select="@*">
P:<xsl:value-of select="name()" /> T:<xsl:value-of select="@*" /> V:<xsl:value-of select="." /><br />
</xsl:for-each>
<br />
<br />
</xsl:template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment