Quantcast
Channel: Development With A Dot
Viewing all articles
Browse latest Browse all 404

Displaying All Fields in a SharePoint Data Source

$
0
0

So, you want to know which fields your data source is returning. You can use the following XSLT:

   1:<xsl:for-eachselect="/dsQueryResponse/Rows/Row/@*">
   2:<p>Name: <xsl:value-ofselect="name()"/> Value: <xsl:value-ofselect="."/></p>
   3:</xsl:for-each>
Very handy, even if I say so myself! Winking smile



Viewing all articles
Browse latest Browse all 404

Trending Articles