Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nschelin/c16dab9e0ffb852a505e778de6907151 to your computer and use it in GitHub Desktop.
Save nschelin/c16dab9e0ffb852a505e778de6907151 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