<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx</link><description>Hi everyone, George Perantatos here. Last time I posted on this blog, I discussed how Smart Client Authoring can be used to convert documents into web pages. This time I want to switch gears a bit and talk about how you can aggregate content from various</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#875177</link><pubDate>Thu, 26 Oct 2006 06:17:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:875177</guid><dc:creator>Michael Gannotti</dc:creator><description>&lt;p&gt;I was just getting set to write this up for a client. You are lifesavers! Thanks!!!!!&lt;/p&gt;
&lt;p&gt;Michael&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.mikeysgblog.com"&gt;http://www.mikeysgblog.com&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#875623</link><pubDate>Thu, 26 Oct 2006 12:36:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:875623</guid><dc:creator>MarcusJT</dc:creator><description>&lt;p&gt;Great article, but I have a few queries:&lt;/p&gt;
&lt;p&gt;1) How does one know that the body field needs to be referenced as &amp;quot;Body_x0020_content&amp;quot; in the .webpart file (as opposed to &amp;quot;Body_x0000_content&amp;quot;, for example)? How would one find the required reference for another metadata field? Additionally, this field name appears to be composed of three parts - can any one of these be altered individually to achieve some other result, or do all three relate directly to each other and should only be considered as one?&lt;/p&gt;
&lt;p&gt;2) In the XSLT &amp;quot;Body_x0020_content&amp;quot; becomes &amp;quot;Body_x005F_x0020_content&amp;quot; - where did the &amp;quot;x005F&amp;quot; part come from, what does it represent, and what is its effect?&lt;/p&gt;
&lt;p&gt;Thanks! :)&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#875633</link><pubDate>Thu, 26 Oct 2006 12:45:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:875633</guid><dc:creator>IanS555</dc:creator><description>&lt;p&gt;I'm just as confused as you Marcus, the hex value seems to be plucked from the air. How do I know the x005F bit is the description? How do I find out what other objects in this are named/hex valued???&lt;/p&gt;
&lt;p&gt;Nice concept, but seriously lacking in any explainations as to how this actually works and how it can be utilized elsewhere.&lt;/p&gt;
&lt;p&gt;Ian&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#876320</link><pubDate>Thu, 26 Oct 2006 20:25:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:876320</guid><dc:creator>George Perantatos</dc:creator><description>&lt;p&gt;Hi Marcus, to answer your questions:&lt;/p&gt;
&lt;p&gt;1) When you tell the Content Query web part to ask for a set of fields, via CommonViewFields as above, you need to use the internal name of the fields. &amp;nbsp;SharePoint's UI shows you the display name of the fields, but stores the internal name in the DB. &amp;nbsp;Usually the internal name and the display name match, but certain characters (like spaces) are encoded.&lt;/p&gt;
&lt;p&gt;An easy way to sneak a peek at what the internal name of a field is: when you visit the Site Column page for a particular column, the URL displays the internal name of the field. &amp;nbsp;In this case it's &amp;quot;field=Body%5Fx0020%5Fcontent&amp;quot;, which is just an encoded way of saying &amp;quot;Body_x0020_content&amp;quot;.&lt;/p&gt;
&lt;p&gt;2) This is one of the quirks of XML/XSL, namely certain characters getting encoded differently when getting passed as XML to the XSL to render. &amp;nbsp;One easy way to see exactly what the XML looks like that the XSL has to render is to insert the markup I have in the example above into your Item Style, and that will render out the field names:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:for-each select=&amp;quot;@*&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; P:&amp;lt;xsl:value-of select=&amp;quot;name()&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/xsl:for-each&amp;gt;&lt;/p&gt;
&lt;p&gt;This will yield all the fields you can render by their name, including in this case &amp;quot;Body_x005F_x0020_content&amp;quot;.&lt;/p&gt;
&lt;p&gt;Ian, if you have questions about how you can utilize the web part for your scenarios, feel free to post a comment describing what you're trying to do, and I can give you some pointers.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#877204</link><pubDate>Thu, 26 Oct 2006 22:09:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:877204</guid><dc:creator>Ian Morrish</dc:creator><description>&lt;p&gt;To get the field names, I create a simple web part page and use the Data View web part to render the information from the _vti_bin/lists.asmx web service.&lt;/p&gt;
&lt;p&gt;Example &lt;a rel="nofollow" target="_new" href="http://www.wssdemo.com/Pages/Lists.aspx"&gt;http://www.wssdemo.com/Pages/Lists.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Configuring and customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#916380</link><pubDate>Wed, 01 Nov 2006 04:03:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:916380</guid><dc:creator>SharePointKicks.com</dc:creator><description>&lt;p&gt;You've been kicked (a good thing) - Trackback from SharePointKicks.com&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#953451</link><pubDate>Sat, 04 Nov 2006 12:12:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:953451</guid><dc:creator>Bisbjerg</dc:creator><description>&lt;p&gt;Hi George,&lt;/p&gt;
&lt;p&gt;This is a great post, and just what I needed. Now I've been able to add a group style for a links list, thus enabling targeting of single links in a list. It only required that I added URL to CommonViewFields.&lt;/p&gt;
&lt;p&gt;A small question. It&amp;#180;s quite easy to add a Content by Query WP to a site definition. Just set up an existing CQWP, export the XML and copy/paste to onet.xml. But the last piece of the puzzle in provisioning a page with the CQWP, to point to a specific list is not so obvious. &amp;nbsp;It seems that the CQWP does not understand current page (.) / parent page (..) notations. I cannot set up CQWP with a links list name and a weburl, say the relative address of the page, e.g. &amp;quot;/./Linkslist&amp;quot;. In practice this means, that after provisioning a page with CQWP, you'd have to manually set up the webpart to point to the proper list. Do you know if there is a way to do this? &lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Lasse&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#996722</link><pubDate>Mon, 06 Nov 2006 14:12:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:996722</guid><dc:creator>Joost</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;i was wondering how you can set up this content query webpart using images. On the pages i want to display i have an image control. When i set the query on image on left i don't see any image. How come?&lt;/p&gt;
&lt;p&gt;First i had only a rich text editor control on my page which can't display an image. So i changed this to an image control. But it's still isn't there.&lt;/p&gt;
&lt;p&gt;I hope you can help me&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1002370</link><pubDate>Mon, 06 Nov 2006 21:12:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1002370</guid><dc:creator>George</dc:creator><description>&lt;p&gt;Hi Joost, out of the box, the Content Query Web Part requests the &amp;quot;Rollup Image&amp;quot; field as part of its queries, and displays it as the image in the out-of-box styles that display images, such as &amp;quot;image on left&amp;quot;.&lt;/p&gt;
&lt;p&gt;You can see this in action with a default site by creating an Article page. &amp;nbsp;There, using the out-of-box page layouts, you should see a Rollup Image field control when you edit the page. &amp;nbsp;Specifying this image will cause the image to appear in the Content Query web part.&lt;/p&gt;
&lt;p&gt;If you want a different image to appear, I would recommend you use the CommonViewFields property to request the field, and then the DataColumnRenames property to map it to the Rollup Image that the XSLT renders. &amp;nbsp;That way, the web part requests your custom image field, but then changes the name of it to match what the XSLT expects to render.&lt;/p&gt;
&lt;p&gt;You can avoid the DataColumnRenames step if you're willing to modify your XSLT to render out your custom field by name. &amp;nbsp;However, that effectively &amp;quot;hardcodes&amp;quot; your XSLT to a particular field name. &amp;nbsp;The DataColumnRenames property helps keep your XSLT styles somewhat agnostic of the underlying fields that it is rendering.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1005823</link><pubDate>Tue, 07 Nov 2006 01:53:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1005823</guid><dc:creator>Mindy Kelly</dc:creator><description>&lt;p&gt;Do you have any idea why the Content Query web part would not be available for me to add to a site? Running TR...&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Mindy Kelly&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1006270</link><pubDate>Tue, 07 Nov 2006 02:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1006270</guid><dc:creator>George</dc:creator><description>&lt;p&gt;Hi Bisbjerg, &lt;/p&gt;
&lt;p&gt;If you're trying to setup the CQWP to point to one and only one list/library or sub-site, that should be possible through specifying properties via the onet. &amp;nbsp;However, there's not a great way to expand a &amp;quot;relative&amp;quot; path, including . and .., to a server-relative path to a list, library, or site, when the part is added to a page.&lt;/p&gt;
&lt;p&gt;I'm assuming you're trying to configure the CQWP such that when the user adds it to a page, it points to the &amp;quot;right&amp;quot; list or library that lives somewhere in the site (say, a site-local document library).&lt;/p&gt;
&lt;p&gt;One option, as you describe, is to have someone customize the part after it'd added to the page. &amp;nbsp;Another option is to have a bit of code that, when the part is added to the page, goes in and sets the property to the correct server-relative path to the list/library that makes sense. &amp;nbsp;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1006276</link><pubDate>Tue, 07 Nov 2006 02:18:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1006276</guid><dc:creator>George</dc:creator><description>&lt;p&gt;Hi Mindy, what site template did you use to create your site? &amp;nbsp;The CQWP is only available in sites that have the Publishing feature enabled. &amp;nbsp;If you started with a team site, that feature is disabled. &amp;nbsp;Sites like Publishing Site have it enabled. &amp;nbsp;You can enable it via Site Settings -&amp;gt; Site Features.&lt;/p&gt;</description></item><item><title>Building tylerbutler.com, Part 2: Building Content Types and Page Layouts</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1008389</link><pubDate>Tue, 07 Nov 2006 05:34:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1008389</guid><dc:creator>Enterprise Content Management (ECM) Team Blog</dc:creator><description>&lt;p&gt;Part 1 :: Part 2 This is part 2 of an ongoing series of posts about my experience building a custom site&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1014293</link><pubDate>Tue, 07 Nov 2006 13:52:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1014293</guid><dc:creator>dino</dc:creator><description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I &amp;nbsp;found a similar article ere &lt;A href="http://www.microsoft.com/belux/msdn/nl/community/columns/stevenvandecraen/contentquerywebpart.mspx" target=_new rel=nofollow&gt;http://www.microsoft.com/belux/msdn/nl/community/columns/stevenvandecraen/contentquerywebpart.mspx&lt;/A&gt;&lt;/P&gt;</description></item><item><title>Recommended reading for November</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1077254</link><pubDate>Tue, 14 Nov 2006 23:12:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1077254</guid><dc:creator>Microsoft SharePoint Products and Technologies Team Blog</dc:creator><description>&lt;p&gt;Continuing from last month’s list of recommended reading, here’s my short list of favorite blog entries&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1096539</link><pubDate>Sat, 18 Nov 2006 02:00:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1096539</guid><dc:creator>Heather Solomon</dc:creator><description>&lt;P&gt;Great post! &amp;nbsp;I am running into one issue though... I am trying to use this method for the News site... display latest news on home page from the News section. &amp;nbsp;I can get description, titles, IDs, etc all to show in the style, but not body. &amp;nbsp;When I include body it renders nothing... no errors, just no content. &amp;nbsp;Any ideas?&lt;/P&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1097435</link><pubDate>Sat, 18 Nov 2006 04:01:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1097435</guid><dc:creator>George</dc:creator><description>&lt;p&gt;Hi Heather, can you tell us how you're configuring the web part to show Body?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1106401</link><pubDate>Mon, 20 Nov 2006 05:04:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1106401</guid><dc:creator>Heather Solomon</dc:creator><description>&lt;p&gt;Here is my custom template in ItemStyles.xsl:&lt;/p&gt;
&lt;p&gt;	&amp;lt;xsl:template name=&amp;quot;S2Style&amp;quot; match=&amp;quot;Row[@Style='S2Style']&amp;quot; mode=&amp;quot;itemstyle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;lt;xsl:for-each select=&amp;quot;@*&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;	 	P:&amp;lt;xsl:value-of select=&amp;quot;name()&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;	 &amp;lt;/xsl:for-each&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;SafeImageUrl&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetSafeStaticUrl&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'ImageUrl'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;SafeLinkUrl&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetSafeLink&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'LinkUrl'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;DisplayTitle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetTitle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;Title&amp;quot; select=&amp;quot;@Title&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'LinkUrl'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;LinkTarget&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;@OpenInNewWindow = 'True'&amp;quot; &amp;gt;_blank&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div id=&amp;quot;linkitem&amp;quot; class=&amp;quot;item&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;string-length($SafeImageUrl) != 0&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class=&amp;quot;image-area-left&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;a href=&amp;quot;{$SafeLinkUrl}&amp;quot; target=&amp;quot;{$LinkTarget}&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;img class=&amp;quot;image-fixed-width&amp;quot; src=&amp;quot;{$SafeImageUrl}&amp;quot; alt=&amp;quot;{@ImageUrlAltText}&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class=&amp;quot;link-item&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.CallPresenceStatusIconTemplate&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;a href=&amp;quot;{$SafeLinkUrl}&amp;quot; target=&amp;quot;{$LinkTarget}&amp;quot; title=&amp;quot;{@LinkToolTip}&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;$DisplayTitle&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	&amp;lt;xsl:value-of select=&amp;quot;@Body_x005F_x0020_content&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;/xsl:template&amp;gt;&lt;/p&gt;
&lt;p&gt;I stopped mid way through step 4 since I couldn't get body to show. &amp;nbsp; &amp;nbsp;I followed the previous steps to a tee. &amp;nbsp; The Content Query Web Part is querying /News. &amp;nbsp; &amp;nbsp;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1110938</link><pubDate>Tue, 21 Nov 2006 00:29:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1110938</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Heather, what happens if you remove the following lines from your XSLT template?&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:for-each select=&amp;quot;@*&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;P:&amp;lt;xsl:value-of select=&amp;quot;name()&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;&amp;lt;/xsl:for-each&amp;gt;&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1111178</link><pubDate>Tue, 21 Nov 2006 00:54:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1111178</guid><dc:creator>Heather Solomon</dc:creator><description>&lt;p&gt;The resulting display only shows the News title. &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1116855</link><pubDate>Tue, 21 Nov 2006 22:54:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1116855</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Heather, things to check:&lt;/p&gt;
&lt;p&gt;- Are you sure the web part is using the style above (S2Style)?&lt;/p&gt;
&lt;p&gt;- Is the web part you're referring to asking for the Body content field? &amp;nbsp;Can you confirm by exporting the web part and checking the CommonViewFields property?&lt;/p&gt;
&lt;p&gt;- Did you confirm that the field is indeed coming back in the web part, with my value-of select=&amp;quot;name()&amp;quot; trick above?&lt;/p&gt;
&lt;p&gt;- Does the body content field of the page in question contain any content?&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1117626</link><pubDate>Wed, 22 Nov 2006 01:44:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1117626</guid><dc:creator>Heather Solomon</dc:creator><description>&lt;p&gt;Yes, I confirmed all of those potential issues. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;One thought, do the various content types have different field names for common content? &amp;nbsp;For Step 3, I used your example (&amp;lt;property name=&amp;quot;CommonViewFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;Body_x0020_content, RichHTML&amp;lt;/property&amp;gt;). &amp;nbsp;Does News use a different field for the Body? &amp;nbsp;Could the problem be that I am just not calling anything that exists for News (my News is the default News site that uses the Article Page content type)?&lt;/p&gt;
&lt;p&gt;If so, how do you go about pulling fields for any given source where you are aggregating content in the CQW?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1118740</link><pubDate>Wed, 22 Nov 2006 03:52:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1118740</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Ah, that must be it. &amp;nbsp;I _added_ a &amp;quot;Body content&amp;quot; field to my Product Page content type above. &amp;nbsp;This field does not exist out of box.&lt;/p&gt;
&lt;p&gt;For your case, if you're using the out of box article page content type, you can ask for something like &amp;quot;Page content&amp;quot; or the like to come back instead (the exact name of the column escapes me currently, but you can inspect the Article Page content type to see them all).&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1122799</link><pubDate>Wed, 22 Nov 2006 19:11:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1122799</guid><dc:creator>Donna Sullivan</dc:creator><description>&lt;p&gt;OK, there has to be a trick to this filters thing. &amp;nbsp;I added a custom field to my content type and, for some reason, it does not appear in the filter's drop down. &amp;nbsp;Why? &amp;nbsp;Does anyone know why? &amp;nbsp;Is there a trick? &lt;/p&gt;
&lt;p&gt;donna.sullivan@rotary.org&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1123525</link><pubDate>Wed, 22 Nov 2006 22:47:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1123525</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Donna, what type of field did you add to your content type?&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1164514</link><pubDate>Tue, 28 Nov 2006 11:26:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1164514</guid><dc:creator>Joost Schermers</dc:creator><description>&lt;P&gt;Hi George,&lt;/P&gt;
&lt;P&gt;I'm facing the same difficulty here as Heather. I want the pages from the Press Release to be displayed on my homepage in the CQWP using xslt. But nothing i try does affect the display. All i see is the title. For the pages i use the default article pages templates. &lt;/P&gt;
&lt;P&gt;First i customized the CQWP like below:&lt;/P&gt;
&lt;P&gt;&amp;lt;property name="CommonViewFields" type="string"&amp;gt;Page_x0020_content, RichHTML&amp;lt;/property&amp;gt;&lt;/P&gt;
&lt;P&gt;As you can see i have changed Body_x0020_content to Page_x0020_content. (btw i have also tried changing RichHTML to Publishing html (while thats the column type)&lt;/P&gt;
&lt;P&gt;Then i customized the ItemStyle as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;lt;xsl:template name="Default" match="*" mode="itemstyle"&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;xsl:variable name="SafeLinkUrl"&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;xsl:call-template name="OuterTemplate.GetSafeLink"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xsl:with-param name="UrlColumnName" select="'LinkUrl'"/&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:call-template&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:variable&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name="SafeImageUrl"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name="OuterTemplate.GetSafeStaticUrl"&amp;gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsl:with-param name="UrlColumnName" &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;select="'ImageUrl'"/&amp;gt; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:call-template&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:variable&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name="DisplayTitle"&amp;gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsl:call-template name="OuterTemplate.GetTitle"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name="Title" select="@Title"/&amp;gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsl:with-param name="UrlColumnName" &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select="'LinkUrl'"/&amp;gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:call-template&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;lt;/xsl:variable&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name="LinkTarget"&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test="@OpenInNewWindow = 'True'" &amp;gt;_blank&amp;lt;/xsl:if&amp;gt; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div id="linkitem" class="item"&amp;gt; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test="string-length($SafeImageUrl) != 0"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class="image-area-left"&amp;gt; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;a href="{$SafeLinkUrl}" mce_href="{$SafeLinkUrl}" &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;target="{$LinkTarget}"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;img class="image" src="{$SafeImageUrl}" &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mce_src="{$SafeImageUrl}" alt="{@ImageUrlAltText}" /&amp;gt; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/a&amp;gt; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:if&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class="link-item"&amp;gt; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name="OuterTemplate.CallPresenceStatusIconTemplate"/&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;a href="{$SafeLinkUrl}" mce_href="{$SafeLinkUrl}" target="{$LinkTarget}" title="{@LinkToolTip}"&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;xsl:value-of select="$DisplayTitle"/&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/a&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;lt;div class="description"&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of select="@Page_x005F_x0020_content" /&amp;gt; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;/xsl:template&amp;gt;&lt;/P&gt;
&lt;P&gt;I know it's a bit of a mess due to copy - paste. But i think you know where to look.&lt;/P&gt;
&lt;P&gt;I really hope you can help me! I have also asked Heather if might know a solution&lt;/P&gt;
&lt;P&gt;many tnx, Joost&lt;/P&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1171704</link><pubDate>Wed, 29 Nov 2006 18:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1171704</guid><dc:creator>Anabhra</dc:creator><description>&lt;p&gt;Is it possible for the CQWP to query pages based on data in a field control?&lt;/p&gt;
&lt;p&gt;What I am trying to do is generate a related content section for my articles page. In the editpanel, the author will enter keywords for the article.&lt;/p&gt;
&lt;p&gt;Now the CQWP should read the keywords and execute the query on other pages that have these keywords too? Kinda like tags...&lt;/p&gt;
&lt;p&gt;So I define the site, the Content Type, Field Control and Filter and then I want the filter value to be picked up run time based on the page that this web part is sited on.&lt;/p&gt;
&lt;p&gt;Any ideas how to do this?&lt;/p&gt;
&lt;p&gt;thanks,&lt;/p&gt;
&lt;p&gt;anabhra&lt;/p&gt;</description></item><item><title>Customizing the Content Query Web Part and Custom Item Styles</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1172847</link><pubDate>Wed, 29 Nov 2006 20:34:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1172847</guid><dc:creator>Heather Solomon - MVP, WSS - Blog about Design, MCMS, SharePoint, and CSS</dc:creator><description /></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1173274</link><pubDate>Wed, 29 Nov 2006 21:44:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1173274</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Anabhra, if I understand your scenario, you want to have the web part query for other pages that are tagged with keywords that match the current page, and you want this to dynamically change based on what the current page tags are.&lt;/p&gt;
&lt;p&gt;If so, I'd recommend you write some code (say, as a control) that lives on the page, inspects the page's tag, and then sets the Content Query web part to filter on that tag.&lt;/p&gt;
&lt;p&gt;For example, if the current page's topic is &amp;quot;Hiking&amp;quot;, your control can read that, and then programmatically set the CQWP's filter to be Topic is equal to Hiking. &amp;nbsp;This would be done during the page lifecycle. &amp;nbsp;You could put this control on certain page layout to ensure it runs on the right pages (e.g. article pages).&lt;/p&gt;
&lt;p&gt;Hope this helps,&lt;/p&gt;
&lt;p&gt;--George&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1173429</link><pubDate>Wed, 29 Nov 2006 22:20:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1173429</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Joost, looks like internal names got you :) &amp;nbsp;Go to Site Settings -&amp;gt; Site Content Types -&amp;gt; Article Page, and then click on &amp;quot;Page Content&amp;quot;. &amp;nbsp;That's the display name, but that's not the internal name.&lt;/p&gt;
&lt;p&gt;One way to find the internal name is to check the query string parameter on the field page.&lt;/p&gt;
&lt;p&gt;For this out of box field, the internal name is PublishingPageContent. &amp;nbsp;Try replacing your instances of Page Content above (in both common view fields and the xslt) with this and see if it works.&lt;/p&gt;
&lt;p&gt;For fields that you create, the internal name will be more predictable. &amp;nbsp;Very likely, it will match the display name, and will have characters like spaces encoded.&lt;/p&gt;
&lt;p&gt;Hope this helps,&lt;/p&gt;
&lt;p&gt;--George&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1174513</link><pubDate>Thu, 30 Nov 2006 03:53:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1174513</guid><dc:creator>Heather Solomon</dc:creator><description>&lt;p&gt;Thanks for all of the support! &amp;nbsp;I got my customized Item Style up and working, thanks to you guys.&lt;/p&gt;
&lt;p&gt;I have put together an article covering the stuff I learned in the process and basically embellished on some things from this post: &lt;a rel="nofollow" target="_new" href="http://www.heathersolomon.com/blog/articles/customitemstyle.aspx"&gt;http://www.heathersolomon.com/blog/articles/customitemstyle.aspx&lt;/a&gt; &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1174636</link><pubDate>Thu, 30 Nov 2006 04:16:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1174636</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Good to hear - and great post!&lt;/p&gt;
&lt;p&gt;--George&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1178695</link><pubDate>Thu, 30 Nov 2006 19:58:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1178695</guid><dc:creator>Liam Cleary</dc:creator><description>&lt;p&gt;Excellent Post!! Good indepth sample.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Liam&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1178818</link><pubDate>Thu, 30 Nov 2006 20:32:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1178818</guid><dc:creator>Anabhra</dc:creator><description>&lt;p&gt;George,&lt;/p&gt;
&lt;p&gt;Thanks for the response. You understand my problem perfectly.&lt;/p&gt;
&lt;p&gt;However, one thing that I am struggling with is that since we do all configuration with the sharepoint designer now (page layouts reside in the database and do not allow me to do any code &lt;/p&gt;
&lt;p&gt;behind), how do I associate or hook into the page life cycle events. Ie; if I build a web part that reads the field control value and then sets the CQWP filter attribute, how do I know that the CQWP will execute the search after I set the attribute? &lt;/p&gt;
&lt;p&gt;Also, which in which life cycle event of the web part will I be able to read the field control value and set the CQWP filter?&lt;/p&gt;
&lt;p&gt;many thanks,&lt;/p&gt;
&lt;p&gt;anabhra&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1193940</link><pubDate>Sat, 02 Dec 2006 20:31:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1193940</guid><dc:creator>Joost</dc:creator><description>&lt;p&gt;Hi George,&lt;/p&gt;
&lt;p&gt;Tnx for the help. It works like a charm now. Tnx to you and Heather. Thumbs up&lt;/p&gt;
&lt;p&gt;Many tnx, Joost&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1207920</link><pubDate>Tue, 05 Dec 2006 01:51:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1207920</guid><dc:creator>George Karkalis</dc:creator><description>&lt;p&gt;Really usefull...&lt;/p&gt;
&lt;p&gt;Have you tried to also use your own CAML query to have advanced control over the returned data? &lt;/p&gt;
&lt;p&gt;I have tried to do this using the QueryOverride property in order to create a list of the current user's tasks including the tasks assigned to a group of the current user, because the &amp;quot;User Tasks&amp;quot; web part does not return these tasks. &lt;/p&gt;
&lt;p&gt;I couldn't make it to work correctly. It shows the tasks on &amp;quot;Edit Page&amp;quot; mode but not in normal mode... Really dissapointing and I couldn't find anyone talking about the QueryOverride property...&lt;/p&gt;
&lt;p&gt;thanks anyway...&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1224303</link><pubDate>Wed, 06 Dec 2006 19:19:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1224303</guid><dc:creator>Jason Becker</dc:creator><description>&lt;p&gt;Does anyone know how to grab the Content Query Web Part's properties rather than those of the source data? &lt;/p&gt;
&lt;p&gt;I seek to control the output appearance more closely by retrieving the web part's default &amp;quot;ItemLimit&amp;quot; and &amp;quot;DisplayColumns&amp;quot; properties as well as custom properties which the web designer can modify. Adding, for example, attributes to be appended to the MORE link's URL (IE: &lt;a rel="nofollow" target="_new" href="http://mysite?FilterBy=Forms"&gt;http://mysite?FilterBy=Forms&lt;/a&gt;). For my purposes each web part would need unique values for this argument.&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;</description></item><item><title>Customização da Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1242588</link><pubDate>Sat, 09 Dec 2006 02:46:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1242588</guid><dc:creator>André Vala</dc:creator><description>&lt;p&gt;Uma das web parts mais flex&amp;#237;veis fornecidas pelo SharePoint 2007 &amp;#233; a Content Query Web Part . Alguns&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1439448</link><pubDate>Tue, 09 Jan 2007 18:09:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1439448</guid><dc:creator>Ana</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Could you help me, please?&lt;/p&gt;
&lt;p&gt;The Pages Library option isn't showed in field List Type. I have a News Site.&lt;/p&gt;
&lt;p&gt;Sincerely,&lt;/p&gt;
&lt;p&gt;Ana.&lt;/p&gt;</description></item><item><title>MOSS2007 – Content Query Web Part Step by Step Basic Styling</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1472970</link><pubDate>Tue, 16 Jan 2007 00:24:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1472970</guid><dc:creator>hello its liam (trainbloggin)</dc:creator><description>&lt;p&gt;Well I am currently working on a project that has a great need to use the Content Query Web Part for...&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1490770</link><pubDate>Fri, 19 Jan 2007 01:51:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1490770</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Jason, a web part in the end is very similar to a server control. &amp;nbsp;You can write another control that looks at the control tree, finds the CQWP, and examines its properties, for example. &amp;nbsp;For your example, you can imagine a control reading the qs parameter and changing the CQWP parameters to filter on the fly.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1550694</link><pubDate>Mon, 29 Jan 2007 11:45:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1550694</guid><dc:creator>Jason Chan</dc:creator><description>&lt;p&gt;Does this webpart only available in MOSS2007? How about WSS3?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1573064</link><pubDate>Thu, 01 Feb 2007 17:19:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1573064</guid><dc:creator>briand</dc:creator><description>&lt;p&gt;I have the CQWP running a the top-level team site and it is successfully crawling the discussion boards in the sub-sites. &amp;nbsp;The only problem is that when I click on the discussion within the web part I am directed to an /_layouts page(therefore failing) rather than the site directory/*site*/lists/.....? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any suggestions on ensuring the links point the the right location?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1627990</link><pubDate>Thu, 08 Feb 2007 18:54:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1627990</guid><dc:creator>Richard Calderon</dc:creator><description>&lt;p&gt;Great article. However, instead of using the removeMarkup() function to disable escaping, try:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:value-of select=&amp;quot;@Body_x005F_x0020_content&amp;quot; disable-output-escaping=&amp;quot;yes&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;Works like a charm....&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1677832</link><pubDate>Wed, 14 Feb 2007 21:26:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1677832</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Richard, while that function does work, a potential unintended consequence is that, by disabling output escaping, you &amp;quot;run&amp;quot; any of the markup in the Body content field. &amp;nbsp;That's fine for things like &amp;lt;div&amp;gt; and &amp;lt;span&amp;gt;, but what about &amp;lt;script&amp;gt;?&lt;/p&gt;
&lt;p&gt;It's true that SharePoint strips out script before it goes into HTML fields. &amp;nbsp;However, one can configure a Content Query web part to map a field with script in it to a field that the web part doesn't output escape (like Body content in your example above). &amp;nbsp;The result would be that someone with rights to update that field and put script in it could run the script on your site.&lt;/p&gt;
&lt;p&gt;The out of box Content Query web part and the XSLTs provide safeguards for this, by checking the source field type and making sure that you don't map it to something that disables output escaping. &amp;nbsp;But that's for our out of box XSLT styles. &amp;nbsp;If you do the above, you have to ensure that consumers of your web part don't try to sneak in markup that shouldn't be there.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1677833</link><pubDate>Wed, 14 Feb 2007 21:27:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1677833</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Jason, the Content Query web part is available in MOSS. &amp;nbsp;WSS does provide the underlying cross-site query (SPSiteDataQuery) if you want to use it directly.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1677837</link><pubDate>Wed, 14 Feb 2007 21:28:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1677837</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;briand, can you give me an example of the URL that's failing, when you click on a discussion board item?&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1696943</link><pubDate>Sat, 17 Feb 2007 22:19:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1696943</guid><dc:creator>Vintage</dc:creator><description>&lt;p&gt;Hi George, great post!&lt;/p&gt;
&lt;p&gt;I saw on one picture that your Additional Filters you had a custom field, &amp;quot;Product Line&amp;quot;. &lt;/p&gt;
&lt;p&gt;I am dying to know how to add the custom columns I create for a Document Library to the Content Query filters like you did with &amp;quot;Product Line&amp;quot;.&lt;/p&gt;
&lt;p&gt;Could you point me in the right directions, please?&lt;/p&gt;
&lt;p&gt;Thanks a lot! :)&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1715419</link><pubDate>Mon, 19 Feb 2007 16:20:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1715419</guid><dc:creator>Marc</dc:creator><description>&lt;p&gt;Great article!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1716185</link><pubDate>Mon, 19 Feb 2007 17:55:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1716185</guid><dc:creator>Marc</dc:creator><description>&lt;p&gt;You should use&lt;/p&gt;
&lt;p&gt; disable-output-escaping=&amp;quot;yes&amp;quot;&lt;/p&gt;
&lt;p&gt;instead of your own tag filter. It will render the html! still a great post though!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1736273</link><pubDate>Wed, 21 Feb 2007 20:53:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1736273</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hey Vintage, the Content Query web part will enumerate custom site columns that you have added, letting you filter on them. &amp;nbsp;Note that if you choose to filter on a content type, we will only enumerate site columns from that content type.&lt;/p&gt;
&lt;p&gt;Are you having trouble seeing your custom column appear in the CQWP?&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1748185</link><pubDate>Fri, 23 Feb 2007 19:59:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1748185</guid><dc:creator>Robert</dc:creator><description>&lt;p&gt;This is a great article and will save a lot of time for alot of people. One question: Is there a reason the CQWP limits the additional filters to three filters? &amp;nbsp;Suppose I have a content type with many columns and I'd like to filter on more than three columns. &amp;nbsp;The behavior I would like would be something similar to creating a view in the document library. &amp;nbsp;Any recommendations or guidance on how to filter the CQWP on more than three filters would be very helpful. &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1772794</link><pubDate>Wed, 28 Feb 2007 10:29:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1772794</guid><dc:creator>Karthik</dc:creator><description>&lt;p&gt;Hey Robert, you can configure the CQWP to use more than three filters &amp;nbsp;by modifying the &amp;quot;QueryOverride&amp;quot; property to use your custom CAML query for filtering. The CAML query can have any number of filter fields and values&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1772837</link><pubDate>Wed, 28 Feb 2007 10:39:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1772837</guid><dc:creator>Karthik</dc:creator><description>&lt;p&gt;I have configured the CQWP to use a custom style ( modified the ItemStyle.xsl file ). Would it be possible to set the XSL of the web part at run time. The behavior I would like to see, would allow the administrator to configure the web part by entering the XSL code at run time, in a text area in the tool pane. Is this possible?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1774435</link><pubDate>Wed, 28 Feb 2007 18:23:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1774435</guid><dc:creator>Vintage</dc:creator><description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;Thanks for your answer, but I've managed to find out how to add the custom columns to the CQWP using the AdditionalFiltersField!&lt;/p&gt;
&lt;p&gt;Thank you for sharing all this information with us!&lt;/p&gt;
&lt;p&gt;Take care!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1789623</link><pubDate>Fri, 02 Mar 2007 22:43:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1789623</guid><dc:creator>alex</dc:creator><description>&lt;p&gt;Hey George,&lt;/p&gt;
&lt;p&gt;I have to customise the cqwp. &amp;nbsp;I have the following queries: &lt;/p&gt;
&lt;p&gt;1. &amp;nbsp;Is it possible to populate the content query web part from database( sql server 2005.....if the content data resides in sql server database). &amp;nbsp;?? if it is possible, Do u have any examples for this ?? &lt;/p&gt;
&lt;p&gt;What are the possible sources from which i can populate the content query web part ?? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;2. &amp;nbsp;I have a cqwp in which I am displaying the news items related to a category (ex: Tax). &amp;nbsp;I want to display the news for the previous week on the click of a link button &amp;lt;&amp;lt; on my web part? How can I do this? do u have any examples &amp;nbsp;?? any help would be highly appreciated.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;alex&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1812730</link><pubDate>Tue, 06 Mar 2007 01:45:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1812730</guid><dc:creator>mkelly</dc:creator><description>&lt;p&gt;Hi Ian,&lt;/p&gt;
&lt;p&gt;I think what you did here is terrific! &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://www.wssdemo.com/Pages/Lists.aspx"&gt;http://www.wssdemo.com/Pages/Lists.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But I'm a beginner and don't understand at all how you set this up, would you be willing to elaborate?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Mindy&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1821020</link><pubDate>Wed, 07 Mar 2007 01:05:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1821020</guid><dc:creator>Alex</dc:creator><description>&lt;p&gt;Geaorge,&lt;/p&gt;
&lt;p&gt;Great Link!! I have made a content query web part comprising of news items filtered on news category. &amp;nbsp;In the CQWP I am able to display the news items for the current month using filters.&lt;/p&gt;
&lt;p&gt;I have the following requirement- &amp;nbsp; I need to add a button called previous &amp;lt;&amp;lt; on click of which it should fetch me the news items for the previous month. &lt;/p&gt;
&lt;p&gt;Can you help me out how do I achive this? Ny code u have sample?&lt;/p&gt;
&lt;p&gt;Any help would be highly appreciated !!!!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1825252</link><pubDate>Wed, 07 Mar 2007 09:34:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1825252</guid><dc:creator>Adam</dc:creator><description>&lt;p&gt;Hi George, thanks for a great article!&lt;/p&gt;
&lt;p&gt;QuestionL: how can I pass the listname to the &amp;nbsp;CQWP XSL stylesheet?&lt;/p&gt;
&lt;p&gt;For example I want to add a View All button at the bottom of the rendered content that links to the /listname/AllItems.aspx page, but I can't find a way to pass or query the listname.&lt;/p&gt;
&lt;p&gt;At present I've got it working by grabbing the first row returned and stripping out the string but that does not work when 0 rows are returned....The listID is passed but not the listname.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1844610</link><pubDate>Fri, 09 Mar 2007 17:14:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1844610</guid><dc:creator>Somesh</dc:creator><description>&lt;p&gt;I am trying to use the CQWP to query on two lists residing on two different subsites. Now while configuring the query part of CQWP i have three options to set as source.I cannot use either &amp;quot;Show item from following list&amp;quot; or &amp;quot;Show item from the following site&amp;quot; since the lista lie in two different subsites. So i set the source as &amp;quot;Show items from all sites&amp;quot;.Further i have &lt;/p&gt;
&lt;p&gt;List Type = Custom List&lt;/p&gt;
&lt;p&gt;Content Type Group = List Content Types&lt;/p&gt;
&lt;p&gt;Content Type = Items.&lt;/p&gt;
&lt;p&gt;However on doing this i am getting a large number of items from lists other than the above two lists which is not acceptable for me.&lt;/p&gt;
&lt;p&gt;How do i configure the CQWP to show items from just the two Lists.&lt;/p&gt;
&lt;p&gt;Can i somehow mention the GUID's for the list in order to restrict my query to just the two specified lists?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1887682</link><pubDate>Thu, 15 Mar 2007 17:44:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1887682</guid><dc:creator>Pablo</dc:creator><description>&lt;p&gt;Hi, I'm trying the same as Robert: use more than 3 filters.&lt;/p&gt;
&lt;p&gt;I'm doing like that:&lt;/p&gt;
&lt;p&gt;protected override void OnInit(EventArgs e)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;base.OnInit(e);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.QueryOverride = @&amp;quot;&amp;lt;Where&amp;gt;&amp;lt;Eq&amp;gt;&amp;lt;FieldRef Name=&amp;quot;&amp;quot;isFull&amp;quot;&amp;quot; /&amp;gt;&amp;lt;Value Type=&amp;quot;&amp;quot;Boolean&amp;quot;&amp;quot;&amp;gt;0&amp;lt;/Value&amp;gt;&amp;lt;/Eq&amp;gt;&amp;lt;/Where&amp;gt;&amp;quot;;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;What could be wrong? It doesn't filter anything. Thanks!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1888649</link><pubDate>Thu, 15 Mar 2007 20:38:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1888649</guid><dc:creator>MikeD</dc:creator><description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;I would like to add small image to entries which emphasize new articles. &amp;nbsp;e.g. Like the &amp;quot;new&amp;quot;-image in list for new list entries.&lt;/p&gt;
&lt;p&gt;Is this possible with the cqwp and xsl?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1891275</link><pubDate>Fri, 16 Mar 2007 05:22:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1891275</guid><dc:creator>Jeremy W</dc:creator><description>&lt;p&gt;I am trying to schedule announcements for display on the front page using a CQWP. I can get it to work using QueryOverride and &amp;lt;Today/&amp;gt;, but I want to specify specific times, too. Can this be done? I tried using &amp;lt;Now/&amp;gt; to no avail. Please help!&lt;/p&gt;
&lt;p&gt;Sample: &lt;/p&gt;
&lt;p&gt;&amp;lt;Where&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;lt;And&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;Leq&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;FieldRef Name=&amp;quot;PublishingStartDate&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;Value Type=&amp;quot;DateTime&amp;quot;&amp;gt;&amp;lt;Now /&amp;gt;&amp;lt;/Value&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/Leq&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;Geq&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;FieldRef Name=&amp;quot;Expires&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;Value Type=&amp;quot;DateTime&amp;quot;&amp;gt;&amp;lt;Now /&amp;gt;&amp;lt;/Value&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/Geq&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;lt;/And&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/Where&amp;gt;&lt;/p&gt;
&lt;p&gt;~Jeremy&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1910840</link><pubDate>Mon, 19 Mar 2007 06:49:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1910840</guid><dc:creator>ArtiK</dc:creator><description>&lt;p&gt;Hi, seems some of you have got the QueryOverride property working. I am trying to use the property to retrieve documents from one of the document library using a simple CAML query as below,&lt;/p&gt;
&lt;p&gt;&amp;lt;Query&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;lt;Where&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Eq&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;FieldRef Name=&amp;quot;ContentType&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Value Type=&amp;quot;Choice&amp;quot;&amp;gt;Test&amp;lt;/Value&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Eq&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;lt;/Where&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/Query&amp;gt;&lt;/p&gt;
&lt;p&gt;However, I get the error &amp;quot;There is a problem with the query that this Web Part is issuing. Check the configuration of this Web Part and try again.&amp;quot;. Tried changing some configurations but the error persists.&lt;/p&gt;
&lt;p&gt;I have also set values in the DataColumnRenames and CommonViewFields properties. Would that affect in anyway?&lt;/p&gt;
&lt;p&gt;Is there anything else that needs to be configured? I have tested the query successfully using the U2U CAML Query builder.&lt;/p&gt;
&lt;p&gt;Any help or advice is greatly appreaciated. Thanks!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1913847</link><pubDate>Mon, 19 Mar 2007 20:18:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1913847</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi ArtiK, chances are you have some malformed XML, or you have some additional spaces somewhere in the markup, or you have an invalid CAML query.&lt;/p&gt;
&lt;p&gt;Have you tried some of the examples from here?: &lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/aa981241.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa981241.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1913856</link><pubDate>Mon, 19 Mar 2007 20:21:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1913856</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi MikeD, it depends on what your logic is. &amp;nbsp;One approach would be to get the created date for each item in the CQWP result set, and then do some conditional logic in the XSLT that compares that with today's date and renders the &amp;quot;New&amp;quot; if it's within some set window of time.&lt;/p&gt;
&lt;p&gt;Provided you have the items' created date and today's date in hand by the time the XSL is running, you should be able to do this.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1913921</link><pubDate>Mon, 19 Mar 2007 20:39:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1913921</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Pablo, do you get the same effect if you specify the QueryOverride property in the .webpart XML, instead of programmatically?&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1913959</link><pubDate>Mon, 19 Mar 2007 20:48:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1913959</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Somesh, you can configure the web part's ListsOverride property to pull from specific lists, based on list ID. &amp;nbsp;You can find more information about the property here: &lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/aa981241.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa981241.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914157</link><pubDate>Mon, 19 Mar 2007 21:51:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914157</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Karthik, you can set the XSLs that the web part loads at runtime. &amp;nbsp;You could write another control, for example, that sits on the page that sets the CQWP's item, header, and/or main XSL files at some point before the render method is called. &amp;nbsp;Each of the three XSL files are represented as separate properties in the web part. &amp;nbsp;They're also expressed as .webpart properties in the XML.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914175</link><pubDate>Mon, 19 Mar 2007 22:01:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914175</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi George Karkalis,&lt;/p&gt;
&lt;p&gt;You are only seeing your items in edit mode because the caching infrastructure of the CQWP does not cache checked-out items of individual users and we disable cache in edit mode. &amp;nbsp;You can disable caching on your webpart by setting the &amp;quot;UseCache&amp;quot; property to false.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914182</link><pubDate>Mon, 19 Mar 2007 22:04:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914182</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Jason Becker,&lt;/p&gt;
&lt;p&gt;You should look into extending the ContentByQueryWebPart class, from there you can add additional properties to the web part and also pass new arguments down to the XSLT.&lt;/p&gt;
&lt;p&gt;Adri Verlaan&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914199</link><pubDate>Mon, 19 Mar 2007 22:10:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914199</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi briand,&lt;/p&gt;
&lt;p&gt;You can fix this by modifying the following line in ContentQueryMain.xslt from&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;$UseCopyUtil = 'True'&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of &lt;/p&gt;
&lt;p&gt;select=&amp;quot;concat('/_layouts/CopyUtil.aspx?Use=id&amp;amp;Action=dispform&amp;amp;ItemId=',@ID,'&amp;amp;ListId=',@ListId,'&amp;amp;WebId=',@WebId,'&amp;amp;SiteId=',$SiteId)&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt;to (added $SiteUrl)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;$UseCopyUtil = 'True'&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of &lt;/p&gt;
&lt;p&gt;select=&amp;quot;concat($SiteUrl,'/_layouts/CopyUtil.aspx?Use=id&amp;amp;Action=dispform&amp;amp;ItemId=',@ID,'&amp;amp;ListId=',@ListId,'&amp;amp;WebId=',@WebId,'&amp;amp;SiteId=',$SiteId)&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914242</link><pubDate>Mon, 19 Mar 2007 22:23:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914242</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi alex,&lt;/p&gt;
&lt;p&gt;1. &amp;nbsp;Yes, it is possible to use data from other sources but will require some coding. &amp;nbsp;First retrieve the data from your source and convert it to a DataTable. &amp;nbsp;Then set your resulting DataTable into the &amp;quot;Data&amp;quot; property of the CQWP. &amp;nbsp;From there the CQWP will use the data provided instead.&lt;/p&gt;
&lt;p&gt;2. &amp;nbsp;You can achieve this by extending the CQWP. &amp;nbsp;You could use a querystring parameter to identify the month and then have your extended CQWP change the CAML based on the month.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914265</link><pubDate>Mon, 19 Mar 2007 22:28:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914265</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Adam,&lt;/p&gt;
&lt;p&gt;You can achieve your scenario by extending the CQWP and overriding the &amp;quot;ModifyXsltArgumentList&amp;quot; function to pass a new parameters (List Name) down to the XSLT engine.&lt;/p&gt;
&lt;p&gt;protected override void ModifyXsltArgumentList(ArgumentClassWrapper argList)&lt;/p&gt;
&lt;p&gt;argList.AddParameter(columnName, namespace, value);&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914290</link><pubDate>Mon, 19 Mar 2007 22:33:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914290</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Jeremy W,&lt;/p&gt;
&lt;p&gt;For time comparisons you need to include the following CAML attribute: IncludeTimeValue=&amp;quot;TRUE&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;lt;Value Type=&amp;quot;DateTime&amp;quot; IncludeTimeValue=&amp;quot;TRUE&amp;quot;&amp;gt;&amp;lt;Today /&amp;gt;&amp;lt;/Value&amp;gt;&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1914307</link><pubDate>Mon, 19 Mar 2007 22:42:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914307</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Ana,&lt;/p&gt;
&lt;p&gt;The CQWP will show list types that are present on the root web. &amp;nbsp;If it is only present in a sub-web then you can use the ListsOverride property to set the correct value.&lt;/p&gt;
&lt;p&gt;Out of the Box, the Pages Library server template is 850, hence you might set the ListsOverride property to the following:&lt;/p&gt;
&lt;p&gt;&amp;lt;Lists ServerTemplate=&amp;quot;850&amp;quot;&amp;gt;&amp;lt;/Lists&amp;gt; &lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1916027</link><pubDate>Tue, 20 Mar 2007 05:10:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1916027</guid><dc:creator>ArtiK</dc:creator><description>&lt;p&gt;Hi, thanks for the quick reply. I have tried the example from msdn sdk as well and it gives the same error.&lt;/p&gt;
&lt;p&gt;I tried creating a CQWP to display items from one of the document libraries, this works fine. Then exported it to add in the query in the QueryOverride property. One the query is entered, it gives the error &amp;quot;There is a problem with the query that this Web Part is issuing. Check the configuration of this Web Part and try again.&amp;quot;. &lt;/p&gt;
&lt;p&gt;Is there any specific configuration or authentication required to be set somewhere? I have tested my queries using the U2U CAML Query Builder and they are retrieving the correct data.&lt;/p&gt;
&lt;p&gt;Really lost figuring out what is wrong. Appreciate your reply. Thanks.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1916500</link><pubDate>Tue, 20 Mar 2007 06:20:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1916500</guid><dc:creator>ArtiK</dc:creator><description>&lt;p&gt;Hi, I have managed to get the CQWP webpart to work using the queryoverride property, there was some problem with the query format. &lt;/p&gt;
&lt;p&gt;Thanks for the help.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1952259</link><pubDate>Mon, 26 Mar 2007 16:33:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1952259</guid><dc:creator>JoeD</dc:creator><description>&lt;p&gt;In ItemStyle.xsl, I see this for every template:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:variable name=&amp;quot;LinkTarget&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;@OpenInNewWindow = 'True'&amp;quot; &amp;gt;_blank&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt;When I use the CQWP to display links from a Links list, I want the links to open in a new browser window. &amp;nbsp;The above looks like it should do it, but I don't see an &amp;quot;Open in new window&amp;quot; field when I create a link in a Links list. &amp;nbsp;Can I add a field that will take advantage of this?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1971296</link><pubDate>Wed, 28 Mar 2007 06:43:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1971296</guid><dc:creator>BeckyB</dc:creator><description>&lt;p&gt;How can I create a content query web part that queries multiple types of lists? For example, I want to create a &amp;quot;News and Information&amp;quot; CQWP where items from both a Pages Library and a Document Library are returned. But when I start defining a CQWP, I am only presented with one choice for a list type.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#1995715</link><pubDate>Fri, 30 Mar 2007 23:25:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1995715</guid><dc:creator>ecmblog</dc:creator><description>&lt;P&gt;Hi JoeD,&lt;/P&gt;
&lt;P&gt;Yes you can take advantage of this.&lt;/P&gt;
&lt;P&gt;Create a new column to your list called "OpenInNewWindow".&lt;/P&gt;
&lt;P&gt;Then add "OpenInNewWindow" to the CQWP CommonViewFields property.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn2.microsoft.com/en-us/library/ms497457.aspx" target=_new rel=nofollow&gt;http://msdn2.microsoft.com/en-us/library/ms497457.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Adri Verlaan [MSFT]&lt;/P&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2020629</link><pubDate>Tue, 03 Apr 2007 22:57:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2020629</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi BeckyB,&lt;/p&gt;
&lt;p&gt;You should look into what the ListsOverride property can offer you.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/aa981241.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa981241.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2163368</link><pubDate>Tue, 17 Apr 2007 16:51:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2163368</guid><dc:creator>rkeinc</dc:creator><description>&lt;p&gt;I have been working in a MOSS 2007 environment and cannot find the Content Query Web Part in the web part Gallery. &amp;nbsp;Where can I obtain it/download it?&lt;/p&gt;
&lt;p&gt;Thank-you very much,&lt;/p&gt;
&lt;p&gt;Rod&lt;/p&gt;
&lt;p&gt;rkeinc@rke-inc.com&lt;/p&gt;
&lt;p&gt;rodney.erb@us.army.mil&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2163514</link><pubDate>Tue, 17 Apr 2007 17:29:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2163514</guid><dc:creator>rkeinc</dc:creator><description>&lt;p&gt;My SharePoint 2007/MOSS 2007 environment has NOT had the Content Query Web Part installed because the system administrator indicated if it relies on MOSS 2007 search/indexing there are problems with our server in this area.&lt;/p&gt;
&lt;p&gt;My question to the guru's out there is does the Content Query Web Part rely on searn/indexing?&lt;/p&gt;
&lt;p&gt;If it does NOT my system administrator indicated he would install it now.&lt;/p&gt;
&lt;p&gt;Thanks to anyone who might know the answer.&lt;/p&gt;
&lt;p&gt;Rod&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2166407</link><pubDate>Wed, 18 Apr 2007 00:06:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2166407</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Rod,&lt;/p&gt;
&lt;p&gt;The Content Query Web Part [CQWP] does not rely on MOSS search/indexing.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2180235</link><pubDate>Wed, 18 Apr 2007 23:49:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2180235</guid><dc:creator>rkeinc</dc:creator><description>&lt;p&gt;At Step 4 (see below) the article assumes the reader knows how to edit the web part. &amp;nbsp;How do you edit the web part? &amp;nbsp;In the picture, I see STYLE LIBRARY &amp;quot;This System List was created by the Publishing Resources feature to...&amp;quot; &amp;nbsp;I'm lost... can someone help me? &amp;nbsp;Specifically, I am trying to add a &amp;quot;column&amp;quot; (Publish) to the Content Query Web Part so that I can render/select it in my Query&lt;/p&gt;
&lt;p&gt;&amp;quot;Step 4: customize XSLT to render additional fields&lt;/p&gt;
&lt;p&gt;The Content Query web part utilizes XSLT to render its contents. &amp;nbsp;This means that I can edit the way the web part renders content and configure exactly what is shown and how it's shown.&lt;/p&gt;
&lt;p&gt;If I edit the web part and look at the toolpane, I'll see a couple of drop-downs that relate to Styles. &amp;nbsp;These correspond to the Header and ItemStyle XSLT files that are located in the site collection's Style Library, which is in the root site.&amp;quot;&lt;/p&gt;
&lt;p&gt;Thank-you.&lt;/p&gt;
&lt;p&gt;Rod&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2289868</link><pubDate>Thu, 26 Apr 2007 23:33:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2289868</guid><dc:creator>Zandy Garrard</dc:creator><description>&lt;p&gt;Perhaps this is a basic question - but where do the values for the filter portion come from? &amp;nbsp;For instance, if I choose to filter my Content Query web part under Additional Filters, I get a drop-down list box (Show items when:). &amp;nbsp;Where does this list of fields come from? &amp;nbsp;how can I add fields to this list?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Zandy&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2299348</link><pubDate>Fri, 27 Apr 2007 15:52:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2299348</guid><dc:creator>Edward Owens</dc:creator><description>&lt;p&gt;My installation of MOSS 2007 is missing the Content Query Web Part, along with the Summary Summary Link Web Part and Table of Contents Web Part. &amp;nbsp;How do I install these?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2361812</link><pubDate>Tue, 01 May 2007 22:30:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2361812</guid><dc:creator>rkeinc</dc:creator><description>&lt;p&gt;Ed,&lt;/p&gt;
&lt;p&gt;The Content Query Web Part is part of the “Web Content Management” features of Microsoft Office SharePoint Server 2007 and in order to use it you need to turn on the Publishing feature on a site. It is not available in a default Windows SharePoint Services v3 installation.&lt;/p&gt;
&lt;p&gt;The following article which is based on the beta may be useful in how to use it once you get it installed...&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/belux/msdn/nl/community/columns/stevenvandecraen/contentquerywebpart.mspx"&gt;http://www.microsoft.com/belux/msdn/nl/community/columns/stevenvandecraen/contentquerywebpart.mspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I hope this helps.&lt;/p&gt;
&lt;p&gt;Good Luck,&lt;/p&gt;
&lt;p&gt;Rod&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2366136</link><pubDate>Wed, 02 May 2007 03:51:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2366136</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Zandy,&lt;/p&gt;
&lt;p&gt;The list of fields is derived from the Site Columns.&lt;/p&gt;
&lt;p&gt;You can add new columns following this path:&lt;/p&gt;
&lt;p&gt;Site Actions-&amp;gt;Site Settings-&amp;gt;Modify All Site Settings-&amp;gt;Site columns-&amp;gt;Create.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2513215</link><pubDate>Thu, 10 May 2007 03:40:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2513215</guid><dc:creator>Mike G</dc:creator><description>&lt;p&gt;Great article (and thanks to Heather Solomon for her additional information).&lt;/p&gt;
&lt;p&gt;I've been able to really tweak the CQWP results but I'm stuck with a list of results where I'd like to display the results as a grid with multiple columns.&lt;/p&gt;
&lt;p&gt;I've figured out how to create a new column for each group (&amp;lt;property name=&amp;quot;DisplayColumns&amp;quot; type=&amp;quot;int&amp;quot;&amp;gt;2&amp;lt;/property&amp;gt; within .webpart), but I'd really like to have a display more similar to what's available with a photo library.&lt;/p&gt;
&lt;p&gt;Any help?&lt;/p&gt;
&lt;p&gt;Mike.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2556326</link><pubDate>Sat, 12 May 2007 03:03:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2556326</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Mike,&lt;/p&gt;
&lt;p&gt;You can achieve your scenario, using at least two different methods:&lt;/p&gt;
&lt;p&gt;1. You can modify ItemStyle.xsl and create &amp;lt;div&amp;gt; with specific CSS attributes to create your columns.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.glish.com/css/"&gt;http://www.glish.com/css/&lt;/a&gt; has some good example of how to do this.&lt;/p&gt;
&lt;p&gt;2. You can modify ContentQueryMain.xsl and add a &amp;lt;table&amp;gt;/&amp;lt;thead&amp;gt;/&amp;lt;th&amp;gt; tag before the call-template to each items and a closing &amp;lt;/table&amp;gt; tag afterwards. &amp;nbsp;Then Modify the ItemStyle.xsl to generate a single row using &amp;lt;tr&amp;gt; and &amp;lt;td&amp;gt;/&amp;lt;th&amp;gt;&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2673226</link><pubDate>Wed, 16 May 2007 17:01:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2673226</guid><dc:creator>vamsi</dc:creator><description>&lt;p&gt;Will it be possible to assign the filter value dynamically..for eg getting site name and assinging to filter value ?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2679526</link><pubDate>Wed, 16 May 2007 23:20:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2679526</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi vamsi,&lt;/p&gt;
&lt;p&gt;You can do this by extending the Content Query Web Part and assigning the filter values during OnLoad() of the web part.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2690165</link><pubDate>Thu, 17 May 2007 10:28:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2690165</guid><dc:creator>anhpt</dc:creator><description>&lt;p&gt;Hi George Perantatos, &lt;/p&gt;
&lt;p&gt;I have created a Column with type of lookup from a My List and I add to Page content type. When i used Content Query Webpart to filter information but that column disappear to manipulate&lt;/p&gt;
&lt;p&gt;I tried to create a new column with type of Choice, new column always appear in filter property of Content Query Web part&lt;/p&gt;
&lt;p&gt;Please help me.&lt;/p&gt;
&lt;p&gt;Pham Tuan Anh&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2702558</link><pubDate>Fri, 18 May 2007 02:23:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2702558</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Pham Tuan Anh,&lt;/p&gt;
&lt;p&gt;The Content Query Web Part [CQWP] shows only site columns. &amp;nbsp;You can add site columns by going to:&lt;/p&gt;
&lt;p&gt;Site Actions-&amp;gt;Site Settings-&amp;gt;Modify All Site Settings-&amp;gt;Site columns&lt;/p&gt;
&lt;p&gt;Also the Cross List Query [XLQ], which is the data source of the CQWP does not support choice or lookup fields that have multi-choice enabled.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2793250</link><pubDate>Tue, 22 May 2007 16:51:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2793250</guid><dc:creator>Sam</dc:creator><description>&lt;p&gt;Has anybody else encountered a problem using lookup columns with the Content Query Web Part?&lt;/p&gt;
&lt;p&gt;I have a site column called Portfolio which is a lookup from a list on my top level site. This column has been added to a content type. I have instances of this content type on several subsites.&lt;/p&gt;
&lt;p&gt;I am trying to roll up all instances of this content type onto my top level site.&lt;/p&gt;
&lt;p&gt;I have edited the CommonViewFields property of the .webpart file to include Portfolio,Lookup however I get the following message when I upload this web part&lt;/p&gt;
&lt;p&gt;'There was an error retrieving data to display in this Web Part'&lt;/p&gt;
&lt;p&gt;I have other custom columns in this content type which work fine but aren't lookup columns.&lt;/p&gt;
&lt;p&gt;Any help would be greatly appreciated.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2815685</link><pubDate>Wed, 23 May 2007 16:15:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2815685</guid><dc:creator>Sam</dc:creator><description>&lt;p&gt;Follow up to above...&lt;/p&gt;
&lt;p&gt;I have just found that by grouping the items by another lookup column on that content type, the Portfolio lookup is displayed. As soon as I take this grouping off I get the error message as above. How strange.&lt;/p&gt;
&lt;p&gt;Does anybody have any ideas why this should be so?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2845938</link><pubDate>Thu, 24 May 2007 20:13:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2845938</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Sam,&lt;/p&gt;
&lt;p&gt;Most likely the error is caused because the lookup column allows multi choices. &amp;nbsp;Multi choices is not supported by the Cross List Query [XLQ] which is the data source of the Content Query Web Part [CQWP].&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2853016</link><pubDate>Fri, 25 May 2007 01:58:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2853016</guid><dc:creator>ron williams</dc:creator><description>&lt;p&gt;Is it possible to configure a CQWP to return a list of documents that have the edit drop down (check in/out, send to, etc.)?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2865661</link><pubDate>Fri, 25 May 2007 12:39:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2865661</guid><dc:creator>Sam</dc:creator><description>&lt;p&gt;Hi Adri,&lt;/p&gt;
&lt;p&gt;Thanks for your reply.&lt;/p&gt;
&lt;p&gt;However, the lookup column does not allow multiple choices. As I mentioned, when grouping the items by another column then the lookup value is returned, but when there is no grouping then the error message is displayed. It sounds a bit like a bug. Can anybody else reproduce it?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#2970096</link><pubDate>Tue, 29 May 2007 18:15:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2970096</guid><dc:creator>James</dc:creator><description>&lt;p&gt;Hi there, wondering if anyone else has experienced this behavior. I have a list with a couple of custom fields on it (the list is derived from the 'Site List' type from the Site Directory site template).&lt;/p&gt;
&lt;p&gt;I am able to get the fields that were initially part of the list template (Region, Division, URL) to show up in the filter drop-downs using the AdditionalFilterFields property. I can also get my custom fields to show up (for example, I added 'Site Type').&lt;/p&gt;
&lt;p&gt;The problem - when I enter a value to query for Region, the expected results are returned. However, if I enter a value for 'Site Type', expected results are NOT returned.&lt;/p&gt;
&lt;p&gt;Is there some problem with using custom fields added to a list template for filtering?&lt;/p&gt;
&lt;p&gt;Thanks in advance - James&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3117534</link><pubDate>Wed, 06 Jun 2007 17:18:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3117534</guid><dc:creator>marvin</dc:creator><description>&lt;p&gt;hi, I have one problem.&lt;/p&gt;
&lt;p&gt;I use side navigation and content query webpart.&lt;/p&gt;
&lt;p&gt;When I change side navigtation configuration. query source is changed in webpart automatically. &lt;/p&gt;
&lt;p&gt;for example)&lt;/p&gt;
&lt;p&gt;/MDocuments -&amp;gt; /defalut.aspx/MDocumets&lt;/p&gt;
&lt;p&gt;It means that /defalut.aspx is created automatically.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3119327</link><pubDate>Wed, 06 Jun 2007 18:38:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3119327</guid><dc:creator>marvin</dc:creator><description>&lt;p&gt;Hi folks,&lt;/p&gt;
&lt;p&gt;Sometimes, when I changed navigation configuration, the query soruce is changed automatically. &lt;/p&gt;
&lt;p&gt;for example)&lt;/p&gt;
&lt;p&gt;/document -&amp;gt; /defalut.aspx/document/&lt;/p&gt;
&lt;p&gt;Any idea how to fix this?&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3169114</link><pubDate>Sat, 09 Jun 2007 00:23:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3169114</guid><dc:creator>Mark</dc:creator><description>&lt;p&gt;I have the CQWP on my site, but it only shows the image rollup or description on a publishing page.&lt;/p&gt;
&lt;p&gt;if I query a task list or calendar, not even the description appears.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3232357</link><pubDate>Mon, 11 Jun 2007 19:52:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3232357</guid><dc:creator>Shimon</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am trying to pull up the list of attachments attached to specific item at the list in order to display them on the page. I'm using CQWP to query the list, but i can't get done.&lt;/p&gt;
&lt;p&gt;Do anybody have an idea how it could be accomplished?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Shimon&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3308621</link><pubDate>Fri, 15 Jun 2007 10:38:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3308621</guid><dc:creator>nxliu</dc:creator><description>&lt;p&gt;yes, it works, but only under system user(eg. 'browse in explorer' under sharepoind designer ), &amp;nbsp;after configure my site to anonymous access, only title field is displayed when access in anonymous user, am i missed any configuration step? &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3311446</link><pubDate>Fri, 15 Jun 2007 14:24:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3311446</guid><dc:creator>Tim</dc:creator><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;first of all thanks for the great post above - helped me a lot. I'm still a beginner when it comes to sharepoint customizing so I hope you can help me with these bunch of questions :)&lt;/p&gt;
&lt;p&gt;i created a template in the itemstyle.xsl to display the latest announcements. I added the title, the date and the author to the output.&lt;/p&gt;
&lt;p&gt;So, my first question is (maybe the easier one): what has to be changed within the attached lines of code(or elsewhere) to display a 24h-format of the time ?&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:variable name=&amp;quot;Created&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;lt;xsl:value-of select=&amp;quot;ddwrt:FormatDateTime(string(@Created) ,1033 ,'dd-MM-yyyy hh:mm')&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;My second question is probably tougher: i wanted to display with the CQWP the latest documents of a scope. no problem bout that.&lt;/p&gt;
&lt;p&gt;The Problem comes up when I wanted to display the name! of the document in the webpart - not the title. All i could find was the &amp;quot;FileRef&amp;quot;-Field, which displays the whole path of the document.&lt;/p&gt;
&lt;p&gt;I also discovered &amp;quot;FileleafRef&amp;quot; for the name of the document but couldn't make it to display it in the webpart.&lt;/p&gt;
&lt;p&gt;Is there maybe a possibility with substring in combination of FileRef ? or how else can i display the name of the document ?&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;Finally, my last questions is what did i wrong in the following code? why does my CQWP do not show the first 200 chars of the content of my announcements and just the &amp;quot;...&amp;quot; ? must be a stupid mistakes by myself but couldn't find it!&lt;/p&gt;
&lt;p&gt;&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;span style=&amp;quot;padding-left: 0px; font-size: smaller; text-decoration: none;&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;Modified by &amp;lt;xsl:value-of select=&amp;quot;$Author&amp;quot; /&amp;gt; at &amp;lt;xsl:value-of select=&amp;quot;$Created&amp;quot;/&amp;gt; O'Clock&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/span&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;substring(@PublishingPageContent, 0, 200)&amp;quot; disable-output-escaping=&amp;quot;yes&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;lt;a href=&amp;quot;{$SafeLinkUrl}&amp;quot; target=&amp;quot;{$LinkTarget}&amp;quot; title=&amp;quot;read more&amp;quot;&amp;gt; ...(more)&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/div&amp;gt;	&lt;/p&gt;
&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;i also add the following lines in the .webpart-file:&lt;/p&gt;
&lt;p&gt;&amp;lt;property name=&amp;quot;CommonViewFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;ExternalUrl,URL;PublishingPageImage,Image;PublishingPageContent,Note;&amp;lt;/property&amp;gt;&lt;/p&gt;
&lt;p&gt;I am appreciate for any hints.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;
&lt;p&gt;(hope i english isn't too bad)&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3411131</link><pubDate>Tue, 19 Jun 2007 23:35:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3411131</guid><dc:creator>Brian</dc:creator><description>&lt;p&gt;You are the bomb ... this is quite useful. &amp;nbsp;I knew it was possible, you have saved me several hours of digging.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3725810</link><pubDate>Fri, 06 Jul 2007 15:40:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3725810</guid><dc:creator>Sanjeev</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thanks for the useful post. I've been able to use information in this post and others to create a 'task rollup' view using the CQWP. The query had to be customized to return the Due Date, Assigned To, fields etc. The task lists being queried exist on the root site and a number of sub-sites within a site collection.&lt;/p&gt;
&lt;p&gt;This worked wonderfully until I logged in as a user that is not a Site Collection Administrator - this user does not see any of the custom-queried fields, only the task title. If I make the user a site collection admin, it works.&lt;/p&gt;
&lt;p&gt;Anyone else seen this?&lt;/p&gt;
&lt;p&gt;Coult there be a bug in the implementation of the CQWP where it is not executing the query to get the additional fields with elevated privilege?&lt;/p&gt;
&lt;p&gt;Thanks! &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3813732</link><pubDate>Wed, 11 Jul 2007 15:10:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3813732</guid><dc:creator>Sahal</dc:creator><description>&lt;p&gt;Hello to all,&lt;/p&gt;
&lt;p&gt;All the thanks to everybody to share this valuable information...&lt;/p&gt;
&lt;p&gt;I have a case and I do not know if it face any of you.&lt;/p&gt;
&lt;p&gt;When I use the CQWP to query all documents inside specific folder in specific Document Library, It does not work.&lt;/p&gt;
&lt;p&gt;The error is: &amp;quot;Cannot save the property settings for this Web Part. The list name is not valid. The list name should refer to a list within the specified site: /listname/&amp;quot;&lt;/p&gt;
&lt;p&gt;Any idea how I can modify the CQWP to do so? &lt;/p&gt;
&lt;p&gt;Any help would be greatly appreciated...&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3817594</link><pubDate>Wed, 11 Jul 2007 20:28:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3817594</guid><dc:creator>Paul</dc:creator><description>&lt;p&gt;What a shame that its all so &amp;quot;black box&amp;quot;. Would be nice to ba able to see the XML I'm supposedly working against. Does my extra &amp;quot;CommonViewField&amp;quot; come through? who knows, it could be ropy XSL, but I've no way of knowing. Talk about overcomplicating something simple.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3824949</link><pubDate>Thu, 12 Jul 2007 07:25:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3824949</guid><dc:creator>LL</dc:creator><description>&lt;p&gt;Would you please give me some suggestions on how to retrieve the results data from the Content Query WEbPart?&lt;/p&gt;
&lt;p&gt;Firstly, I setup the WebPart to retrieve &amp;nbsp;List data from all sites' tasks Lists. Those Listitems are return to the WebPart and I can see the results on the screen.&lt;/p&gt;
&lt;p&gt;Now I would like to get those results data from the Webpart and passing them to another web applicaiton.&lt;/p&gt;
&lt;p&gt;How can realize this function?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3932586</link><pubDate>Wed, 18 Jul 2007 09:36:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3932586</guid><dc:creator>tutejaamit5</dc:creator><description>&lt;p&gt;#Problem getting outer div around all the items&lt;/p&gt;
&lt;p&gt;Hi ,&lt;/p&gt;
&lt;p&gt;I want to add a div tag,and want to open it in header and close that div in footer in ItemStyle.xsl.I have found both header and footer.&lt;/p&gt;
&lt;p&gt;I tried implementing the Mike's way(&lt;a rel="nofollow" target="_new" href="https://blogs.pointbridge.com/Blogs/gehard_mike/Lists/Posts/Post.aspx?ID=23"&gt;https://blogs.pointbridge.com/Blogs/gehard_mike/Lists/Posts/Post.aspx?ID=23&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;but it does not seems to be working.Whenever i add and open a simple div tag in header and close it in footer,it gives an error.When i &amp;nbsp;prefixed &amp;lt;![CDATA[ before div,it just printed the div as simple string.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3960891</link><pubDate>Thu, 19 Jul 2007 21:45:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3960891</guid><dc:creator>JWM</dc:creator><description>&lt;p&gt;Is it possible to install this Content Query Web Part on WSS 3.0? &amp;nbsp;All I have found on this web part assumes that you already have it on your Sharepoint server, and I know it comes with out of the box MOSS. &amp;nbsp;I have WSS 3.0 and need a web part that will do what the CQWP will. &amp;nbsp;Any suggestions? &amp;nbsp;Thanks!&lt;/p&gt;</description></item><item><title>Configuring &amp; Customizing a CQWP</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3980141</link><pubDate>Sat, 21 Jul 2007 00:05:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3980141</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx"&gt;http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#3980657</link><pubDate>Sat, 21 Jul 2007 00:20:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3980657</guid><dc:creator>Vicky Nguyen</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I've read a few blogs on how to use Content Query Web Part to rollup information from multiple sharepoint lists. &amp;nbsp;I could still not successfully get it to work.&lt;/p&gt;
&lt;p&gt;I basically just want to use CQWP to rollup the two task list we have on two separate Sites (Parent &amp;amp; child sites). &amp;nbsp;I was successfully get the title of tasks from both lists to show up, but I would like to also display additional fields from the task list in this rollup web part, I couldn't get it to work. &amp;nbsp; Please help&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4124175</link><pubDate>Mon, 30 Jul 2007 04:54:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4124175</guid><dc:creator>icemx</dc:creator><description>&lt;p&gt;I, i would to use Content by query in a user control with &lt;/p&gt;
&lt;p&gt;url in parameters and costum field. My problem is i dont want&lt;/p&gt;
&lt;p&gt;import and export my cbq in a web part zone.. I want use &lt;/p&gt;
&lt;p&gt;the cbq control and use its properties. I find in a web and i &lt;/p&gt;
&lt;p&gt;just find the solution in this article... Do you know how i can&lt;/p&gt;
&lt;p&gt;display my custom field with xslt but not with the import&lt;/p&gt;
&lt;p&gt;export way?&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4169283</link><pubDate>Wed, 01 Aug 2007 17:28:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4169283</guid><dc:creator>Kwok-Ho</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I'm getting the hang of CQWP and all.. but I got stuck at the Additional-Field part. Now I have a field which can either be filled with multiple values or no values (null/blank). Is it possible to filter these out? &lt;/p&gt;
&lt;p&gt;I've tried several possibilities with 'is equal to' and 'is not equal to' and the AND and NOT operator. But the results are either Show All or None :S&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Kwok-Ho&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4365542</link><pubDate>Mon, 13 Aug 2007 12:18:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4365542</guid><dc:creator>Andy</dc:creator><description>&lt;p&gt;Hi, &lt;/p&gt;
&lt;p&gt;I had copied the &amp;quot;Image on Right&amp;quot; item template to &amp;quot;MyItemTemplate&amp;quot; in the itemstyle.xsl.&lt;/p&gt;
&lt;p&gt;The newly added item can be selected in the tool plane. However, no changes in layout even thou' I updated the itemstyle.xsl.&lt;/p&gt;
&lt;p&gt;Do we need to restart anything (e.g. iis / wss) in order to take effect? &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4384374</link><pubDate>Tue, 14 Aug 2007 17:38:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4384374</guid><dc:creator>Thomas</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;we have a Custom list on the home page which we must display on several other web sites. I tried to do that with the content query Web Part, but i want to display _all_ Columns from the list. Is it not possible to display that without manually select the columns via export webpart/edit xml ?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4404711</link><pubDate>Wed, 15 Aug 2007 23:37:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4404711</guid><dc:creator>eddietec</dc:creator><description>&lt;p&gt;Hi guys, somebody knows how to retrieve the Display Name of a column?. Actually, the name() funtion gets the internal column name only.&lt;/p&gt;
&lt;p&gt;Thks.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4415106</link><pubDate>Thu, 16 Aug 2007 16:17:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4415106</guid><dc:creator>rkeinc</dc:creator><description>&lt;p&gt;Go to &lt;a rel="nofollow" target="_new" href="http://www.heathersolomon.com/blog/articles/CustomItemStyle.aspx"&gt;http://www.heathersolomon.com/blog/articles/CustomItemStyle.aspx&lt;/a&gt; and good luck!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4480541</link><pubDate>Mon, 20 Aug 2007 18:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4480541</guid><dc:creator>David Porter</dc:creator><description>&lt;p&gt;I'd like to leverage the Content Query Web Part to display a Summary link part created on my main page, to display the Summary Link web part &amp;nbsp;throughout all other pages. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;I've been succesful in doing this with my announcements but don't see Summary Link web part as a option in the List Types, only links. &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4649886</link><pubDate>Thu, 30 Aug 2007 20:04:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4649886</guid><dc:creator>Yannis Chaviaras</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I receive the following error message when creating any CQWP. &lt;/p&gt;
&lt;p&gt;Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Windows SharePoint Services-compatible HTML editor such as Microsoft Office SharePoint Designer. If the problem persists, contact your Web server administrator.&lt;/p&gt;
&lt;p&gt;The funny thing is that with my admin account, the CQWP works fine. Every other user, receives the above error message on his screen. &lt;/p&gt;
&lt;p&gt;Any help would be highly appreciated! &lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4788072</link><pubDate>Thu, 06 Sep 2007 17:50:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4788072</guid><dc:creator>bartski</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I want the CQWP to show items from multiple list types. The Page library, a document library and a custom list.&lt;/p&gt;
&lt;p&gt;I tried this by using the list override property but:&lt;/p&gt;
&lt;p&gt;When I use de GUID from a custom list or a link list in combination with a guid from a document library and the page library it doesn't show the items from the custom list only from the libraries.&lt;/p&gt;
&lt;p&gt;When I just use the (custom) list GUID it works fine for that one. &lt;/p&gt;
&lt;p&gt;Code example:&lt;/p&gt;
&lt;p&gt;&amp;lt;property name=&amp;quot;ListsOverride&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;lt;![CDATA[&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;Lists&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;List ID=&amp;quot;16b74d46-b2ta-4896-a61a-02b3f08d55zb&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;List ID=&amp;quot;135F445F-4457-413F-AABE-D3CF00C29A03&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;List ID=&amp;quot;D84ED59A-1922-45FF-B275-C10448794A5F&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/Lists&amp;gt;]]&amp;gt;&lt;/p&gt;
&lt;p&gt;Could anyone help me out, please?&lt;/p&gt;
&lt;p&gt;Greetz&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4852995</link><pubDate>Mon, 10 Sep 2007 15:25:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4852995</guid><dc:creator>Lellie</dc:creator><description>&lt;p&gt;What about those of us with WSS 3? This is exactly what I need for a site, but I don't have MOSS 2007. Any ideas how we can get the same functionality - is it possible to install the web part or import one in to do this?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4859140</link><pubDate>Tue, 11 Sep 2007 05:21:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4859140</guid><dc:creator>Bob</dc:creator><description>&lt;p&gt;Greetings,&lt;/p&gt;
&lt;p&gt;This worked like a champ! &amp;nbsp;Thanks for the code. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;One question. &amp;nbsp;I am rolling up announcements from other departmetns into a single announcement on my &amp;quot;root home page&amp;quot;. &amp;nbsp;therefore in my query section I have selected: &lt;/p&gt;
&lt;p&gt;* show items from all sites in this site collection&lt;/p&gt;
&lt;p&gt;I would much rather pick and choose the annoucement lists if possible. &amp;nbsp;Is there a way?&lt;/p&gt;
&lt;p&gt;Also, I only want to show the 2 most recent announcements from each department annoucement list in my roll-up but I have not found a way to do that. &amp;nbsp;Your example above does not quite fit, since, I believe I am querying the whole site collection.&lt;/p&gt;
&lt;p&gt;Thanks for your help&lt;/p&gt;
&lt;p&gt;bsieloff@gmail.com&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4961669</link><pubDate>Mon, 17 Sep 2007 22:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4961669</guid><dc:creator>Dario</dc:creator><description>&lt;p&gt;Hello, &lt;/p&gt;
&lt;p&gt;I have to share contents between diffetent Sites Collection. I mean, I need to show a content information from SiteCollection1 in SiteCollection2.&lt;/p&gt;
&lt;p&gt;Is there a way to do this?&lt;/p&gt;
&lt;p&gt;Thanks for your help&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4986382</link><pubDate>Wed, 19 Sep 2007 00:18:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4986382</guid><dc:creator>Lucas Persona</dc:creator><description>&lt;p&gt;After reading this, Heather's and a couple of other posts, my main objective was to 'wrap' all items from a list in a DIV tag, with minimal impact to ContentQueryMain.xml&lt;/p&gt;
&lt;p&gt;I've found something not posted in any of these blogs/posts/comments that may well indicate further developments on this area.&lt;/p&gt;
&lt;p&gt;Both Header and ItemStyle have a 'mode' attribute.&lt;/p&gt;
&lt;p&gt;ContentQueryMain call three templates types: CallHeaderTemplate, CallItemTemplate and CallFooterTemplate.&lt;/p&gt;
&lt;p&gt;The problem is that only the first too actually call something else, while the last one, just add a DIV tag for the footer.&lt;/p&gt;
&lt;p&gt;My change, that I believe will be implemented in next MOSS release, was to add to ContentQueryMain 'CallFooterTemplate' template:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:apply-templates select=&amp;quot;.&amp;quot; mode=&amp;quot;footer&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/xsl:apply-templates&amp;gt;&lt;/p&gt;
&lt;p&gt;Then inside Header.xsl, you can create two GroupStyle templates using both modes 'header' and 'footer', where the tags for open/close tables, divs, and everything else can be placed.&lt;/p&gt;
&lt;p&gt;Works very good, with minimal changes to ContentQueryMain.xml, and using the same architecture that MS is using for Header and Item.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Lucas Persona&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#4999401</link><pubDate>Wed, 19 Sep 2007 20:56:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4999401</guid><dc:creator>Jen</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am trying to configure the CQWP for our team site. &amp;nbsp;We want to roll up tasks assigned to a given user from multiple child sites and display them all on the parent site. &amp;nbsp;When I run the query and select the &amp;quot;assigned to&amp;quot; filter, I get the error, &amp;quot;There was an error retrieving data to display in this web part,&amp;quot; even though the user's tasks should have been displayed. &amp;nbsp;Oddly, when I change the filter selection to &amp;quot;created by&amp;quot; and run the query, it works. &amp;nbsp;I've been searching for a solution and haven't been able to find one. &amp;nbsp;Has anyone else encountered this?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Jen&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5009585</link><pubDate>Thu, 20 Sep 2007 12:35:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5009585</guid><dc:creator>Pete</dc:creator><description>&lt;p&gt;I am trying to follow the example above and it all works great except I can't get it to return the fields from my custom content type attached to the list.&lt;/p&gt;
&lt;p&gt;I have added the following code to the styles.&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:for-each select=&amp;quot;@*&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; P:&amp;lt;xsl:value-of select=&amp;quot;name()&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/xsl:for-each&amp;gt;&lt;/p&gt;
&lt;p&gt;The items from the list are returned as expected and the query is set to filter out those items which are not created with my custom content type but none of the fields from my custom content type attached to the list are returned from the &amp;lt;xsl:for-each&amp;gt;&lt;/p&gt;
&lt;p&gt;Does the select=&amp;quot;@*&amp;quot; filter these out?&lt;/p&gt;
&lt;p&gt;Any ideas???&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Pete&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5106880</link><pubDate>Tue, 25 Sep 2007 00:10:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5106880</guid><dc:creator>Lucas</dc:creator><description>&lt;p&gt;Pete,&lt;/p&gt;
&lt;p&gt;Are you adding these additional fields to the CommonViewFields tag in the XML (after you Export the webpart)?&lt;/p&gt;
&lt;p&gt;Lucas&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5110363</link><pubDate>Tue, 25 Sep 2007 04:47:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5110363</guid><dc:creator>Pete</dc:creator><description>&lt;p&gt;Hi Lucas,&lt;/p&gt;
&lt;p&gt;No I haven't... I guess my understanding was that this would show me all fields associated with this list. &amp;nbsp;If I have to add the fields to the CommonViewFields tag in the xml then I already know what these fields are and surely this code is redundant? &amp;nbsp;Am I missing the point of this code?&lt;/p&gt;
&lt;p&gt;I was hoping that this code would show me what fields are associated to the list so I knew what to put in the CommonViewFields tag?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Pete&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5147570</link><pubDate>Wed, 26 Sep 2007 19:54:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5147570</guid><dc:creator>Shannon</dc:creator><description>&lt;p&gt;More questions on the need for more than three filters within the CQWP and it is a two parter:&lt;/p&gt;
&lt;p&gt;1. I need a way to have the author specify more than three filters but I can not find anything that shows how to get the CQWP to display more than three sets. Using the QueryOverride does just that, it disables the UI area for the filters at runtime. &lt;/p&gt;
&lt;p&gt;2. Is there a way to do an &amp;quot;AdditionalQuery&amp;quot; in that it takes what is entered by the author in the filter fields and add whatever additional params to the query - like a QueryOverride but not override the whole query. Need for global date filtering so that the authors don't have to specify it every time.&lt;/p&gt;
&lt;p&gt;Or, to do any of the above, need to make a custom CQWP?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5155391</link><pubDate>Thu, 27 Sep 2007 03:12:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5155391</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi ron,&lt;/p&gt;
&lt;p&gt;Yes it is possible to modify the XSLT to show an edit drop down menu.&lt;/p&gt;
&lt;p&gt;Hi James,&lt;/p&gt;
&lt;p&gt;The AdditionalFilterFields takes internal names, and not their display names. The space in &amp;quot;Site Type&amp;quot; gets converted by SharePoint, check the URL when modifying your site column the internal should be in it.&lt;/p&gt;
&lt;p&gt;Hi Marvin,&lt;/p&gt;
&lt;p&gt;Navigation should not affect the CQWP. &amp;nbsp;Do you have custom code, what navigation setting are you changing?&lt;/p&gt;
&lt;p&gt;Hi Mark,&lt;/p&gt;
&lt;p&gt;You need to figure out where calendar/task list description are stored and follow the article instruction.&lt;/p&gt;
&lt;p&gt;Hi nxliu,&lt;/p&gt;
&lt;p&gt;Have you published and approvel your XSLT?&lt;/p&gt;
&lt;p&gt;Hi Tim,&lt;/p&gt;
&lt;p&gt;FormatDateTime passes the specified string to the toString of a DateTime, the doc bellow should help you figure out what format you want: &lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/k494fzbf.aspx"&gt;http://msdn2.microsoft.com/en-us/library/k494fzbf.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Check DataColumnRename and try to rename the column you want to show as title to &amp;quot;Title&amp;quot;&lt;/p&gt;
&lt;p&gt;Since you are getting the first 200 character, there might be malformed tags or missing tags, which causes the browser not to render your content where you expect it to be. &amp;nbsp;Also make sure that this is indeed the internal name of the column where your data reside.&lt;/p&gt;
&lt;p&gt;Hi Sanjeev,&lt;/p&gt;
&lt;p&gt;This is most likely because your XSLT are in draft mode, hence only visible to the Site Collection Administrator from which you modified those files. &amp;nbsp;You need to publish and approve your changes.&lt;/p&gt;
&lt;p&gt;Hi Sahal,&lt;/p&gt;
&lt;p&gt;The CQWP does not support specifying a folder, please select a list. &amp;nbsp;You can use one of your filter tripplet to reduce the result to a specified folder.&lt;/p&gt;
&lt;p&gt;Hi LL,&lt;/p&gt;
&lt;p&gt;You can extend the CQWP, from there you can do what you want with the data. &amp;nbsp;There are also some API that you can call to retrieve the data (and cached), without the need to use the CQWP for your third party web applications.&lt;/p&gt;
&lt;p&gt;Hi tutejaamit5,&lt;/p&gt;
&lt;p&gt;Try to print your value as text by putting quotes in your select attribute, otherwise you might need to modify the ContentQueryMain.xslt to do what you want.&lt;/p&gt;
&lt;p&gt;Hi JWM,&lt;/p&gt;
&lt;p&gt;This is a MOSS only feature.&lt;/p&gt;
&lt;p&gt;Hi Vicky,&lt;/p&gt;
&lt;p&gt;What step are you having a problem with?&lt;/p&gt;
&lt;p&gt;Hi icemx,&lt;/p&gt;
&lt;p&gt;You can use SharePoint Designer and drag and drop the web part and modify the property from a toolpane.&lt;/p&gt;
&lt;p&gt;Hi Kwok-Ho,&lt;/p&gt;
&lt;p&gt;Unfortunatly the data source that the CQWP uses does not support Mutli-Valued Lookups or Multi-Choice columns.&lt;/p&gt;
&lt;p&gt;Hi Andy,&lt;/p&gt;
&lt;p&gt;Check your first line, and verify that the match attribute is correctly set.&lt;/p&gt;
&lt;p&gt;Hi Thomas,&lt;/p&gt;
&lt;p&gt;Not to my knowledge but you might have more luck looking up SPSiteDataQuery documentation.&lt;/p&gt;
&lt;p&gt;Hi eddietec,&lt;/p&gt;
&lt;p&gt;To get the display name you will need to extend the CQWP and write code to pass down as an arguments the display name of your columns.&lt;/p&gt;
&lt;p&gt;Hi David,&lt;/p&gt;
&lt;p&gt;To achieve this scenario you will need to write a new DataSource that retrieve the data from your summary link web part. &amp;nbsp;What I would suggest is creating a custom list and placing your items there, and then have all your CQWP point to that list.&lt;/p&gt;
&lt;p&gt;Hi Yannis,&lt;/p&gt;
&lt;p&gt;Most likely the Site administrator is seing a draft version of the xslts that are valid, while users are still seeing the published xslts version. &amp;nbsp;Publish and approve your xslts.&lt;/p&gt;
&lt;p&gt;Hi bartski,&lt;/p&gt;
&lt;p&gt;Check the SPSiteDataQuery documentation to see if having stream and non-stream items in a single request is supported.&lt;/p&gt;
&lt;p&gt;Hi Lellie,&lt;/p&gt;
&lt;p&gt;The CQWP is a MOSS only feature, but you can upgrade WSS to MOSS.&lt;/p&gt;
&lt;p&gt;Hi Bob,&lt;/p&gt;
&lt;p&gt;You can set your query to a list and specify the maximum number of items to return using the toolpane.&lt;/p&gt;
&lt;p&gt;Hi Dario,&lt;/p&gt;
&lt;p&gt;This is currently not supported without custom code.&lt;/p&gt;
&lt;p&gt;Hi Jen,&lt;/p&gt;
&lt;p&gt;Most likely your assigned to column is a multi-value lookup or multi-choice column which is not supported by our data source (SPSiteDataQuery)&lt;/p&gt;
&lt;p&gt;Hi Pete,&lt;/p&gt;
&lt;p&gt;The code snippet you specified only returns the column name once those column have been requested, you will need to first specify the CommonViewFields so that those column are returned with the data. &amp;nbsp;You can get the list of columns of a list by looking at it's settings.&lt;/p&gt;
&lt;p&gt;Hi Shanon, &lt;/p&gt;
&lt;p&gt;Yes, you will need to extend the CQWP to be able to implement your scenarios.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5169009</link><pubDate>Thu, 27 Sep 2007 17:56:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5169009</guid><dc:creator>Harlan</dc:creator><description>&lt;p&gt;I used this example to pull content from an announcements list and display the body contents in the CQWP. However, I'm having problems displaying double quotes from the body of the announcement. They show up as '&amp;amp;quot' in the CQWP, and looking behind it seems that it translates the '&amp;amp;' from the '&amp;amp;quot' to '&amp;amp;amp;' and then adds the rest 'quot;' so what I see when I view the source is '&amp;amp;amp;quot;'. &lt;/p&gt;
&lt;p&gt;Anyways, I tried to fix the problem by using a simple XPath replace function on the $bodyContent in the ItemStyle.xsl, but it fails the web part. What I've written is this:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:value-of select=&amp;quot;replace($bodyContent, '&amp;amp;amp;quot;', '&amp;amp;#34;')&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;I have tested the function by replacing a with b and it still fails with the message Unable to display this Web Part.. etc. &lt;/p&gt;
&lt;p&gt;Any suggestions? Is my syntax incorrect? Any other way &amp;nbsp;to solve this problem? Funny thing is that double quotes from the announcements' titles are displaying correctly. &lt;/p&gt;
&lt;p&gt;Thanks for any suggestion..&lt;/p&gt;
&lt;p&gt;- Harlan&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5249134</link><pubDate>Wed, 03 Oct 2007 02:06:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5249134</guid><dc:creator>Nancy</dc:creator><description>&lt;p&gt;I have the same problem as Yannis: Unable to display webpart... &amp;nbsp;Pages are not publishing pages. Admin can see CQWP info, but others can't, but sometimes the others can. &amp;nbsp;This problem has just arisen in the last week. Previously, no problem with anyone seeing anything. &amp;nbsp;Sites are provisioned from a template, but then changes are made to the provisioned site and the error arises.&lt;/p&gt;
&lt;p&gt;Help!&lt;/p&gt;</description></item><item><title>Visual How-To: Displaying Custom Fields in Content Query Web Parts in Office SharePoint Server 2007</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5267319</link><pubDate>Wed, 03 Oct 2007 23:19:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5267319</guid><dc:creator>Microsoft Enterprise Content Management (ECM) Team Blog</dc:creator><description>&lt;p&gt;The topic of making the Content Query web part display custom fields has been a hot topic on this blog&lt;/p&gt;
</description></item><item><title>Friday 10/5 SharePoint Link Love</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5291578</link><pubDate>Fri, 05 Oct 2007 14:24:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5291578</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;I don&amp;amp;#39;t normally do this, but there are a few things I&amp;amp;#39;ve noticed in my feeds the last week or&lt;/p&gt;
</description></item><item><title>Visual HowTo Custom Fields im CQWP anzeigen</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5359887</link><pubDate>Mon, 08 Oct 2007 13:49:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5359887</guid><dc:creator>SharePoint, SharePoint and stuff </dc:creator><description>&lt;p&gt;Ein Visual HowTo zum Thema Displaying Custom Fields in Content Query Web Parts in Office SharePoint Server&lt;/p&gt;
</description></item><item><title>Enhanced Content Query Web Part available on CodePlex</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5397527</link><pubDate>Thu, 11 Oct 2007 08:54:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5397527</guid><dc:creator>Microsoft SharePoint Products and Technologies Team Blog</dc:creator><description>&lt;p&gt;The Content Query Web Part (or CQWP) in MOSS 2007 is one of the most often used components on SharePoint-based&lt;/p&gt;
</description></item><item><title>Enhanced Content Query Web Part available on CodePlex</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5397801</link><pubDate>Thu, 11 Oct 2007 09:19:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5397801</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;The Content Query Web Part (or CQWP) in MOSS 2007 is one of the most often used components on SharePoint&lt;/p&gt;
</description></item><item><title>CQWP debug item style</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5406628</link><pubDate>Fri, 12 Oct 2007 00:28:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5406628</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;Reading this post a few months ago I found this great tip. If you want to know what are the fields that&lt;/p&gt;
</description></item><item><title>SharePoint 2007 : Customization de la Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5423609</link><pubDate>Fri, 12 Oct 2007 18:04:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5423609</guid><dc:creator>Philippe Sentenac [Usual Coder]</dc:creator><description>&lt;p&gt;Aujourd'hui, je vais profiter de vous donner quelques informations sur la customization de la content&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5487656</link><pubDate>Wed, 17 Oct 2007 12:10:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5487656</guid><dc:creator>chia weng yan</dc:creator><description>&lt;p&gt;Hi everyone, &lt;/p&gt;
&lt;p&gt;I need some help.I have just created a publishing portal. I have problem with my anonymous access. Somehow member of the public cant view my custom list item without being prompt for a username and password. &amp;nbsp;I have set the anonymous access to &amp;quot;view entire websites&amp;quot;. &amp;nbsp;I do not have the same problem with other theme sites. I think the problem lies in the lock down mode &amp;nbsp;(limited access) in publishing portal. Can anyone teach me how i can handle anonymous access to allow them to view custom list item?.. Any help is appreciated&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Chia Weng Yan&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5491141</link><pubDate>Wed, 17 Oct 2007 15:52:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5491141</guid><dc:creator>Daniel</dc:creator><description>&lt;p&gt;Excellent blog!&lt;/p&gt;
&lt;p&gt;I have one question, I want to group by weeks, how do I accomplish that?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5543516</link><pubDate>Sat, 20 Oct 2007 13:39:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5543516</guid><dc:creator>Peter</dc:creator><description>&lt;p&gt;Great article. It works great here. &lt;/p&gt;
&lt;p&gt;I have one question, when user click the (more) link, I want to just show the entire annountment on the web page without Title, Body, Expires, ... in the left hand side and announcement details on the right hand site. &lt;/p&gt;
&lt;p&gt;In other word, I just want to display announcement details on the page without showing all announcement attributes in a table format&lt;/p&gt;
&lt;p&gt;How can I do it? &lt;/p&gt;
&lt;p&gt;Thanks, &lt;/p&gt;
&lt;p&gt;Peter&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5627244</link><pubDate>Tue, 23 Oct 2007 19:29:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5627244</guid><dc:creator>Christof</dc:creator><description>&lt;p&gt;Hi ECM-Team,&lt;/p&gt;
&lt;p&gt;is it possible to query the Wiki content field with the Content Query Webpart? There is a field called &amp;quot;WikiField&amp;quot;, but if I integrate it in the CommonViewFields nothing will be displayed.&lt;/p&gt;
&lt;p&gt;Anybody any ideas??&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5948820</link><pubDate>Wed, 07 Nov 2007 04:49:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5948820</guid><dc:creator>- Dustin</dc:creator><description>&lt;p&gt;Is it possible to add paging to the CQWP? &lt;/p&gt;
&lt;p&gt;e.g. &amp;nbsp;A CQWP is querying a links list that contains 20 items and the CQWP displays 1-10 initially and has a next option to display 11-20 with a previous option?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Dustin&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5965013</link><pubDate>Wed, 07 Nov 2007 20:30:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5965013</guid><dc:creator>james</dc:creator><description>&lt;p&gt;Does anybody know how to get file size internal name and type for a document library. &amp;nbsp;When I checked all field names, I saw '_x0020_ows_File_x005F_x0020_Size'. &amp;nbsp;but when I used the name in xslt, I didn't get any value&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5992166</link><pubDate>Thu, 08 Nov 2007 21:30:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5992166</guid><dc:creator>oi</dc:creator><description>&lt;p&gt;Hello, all.&lt;/p&gt;
&lt;p&gt;I have such problem as in great article.&lt;/p&gt;
&lt;p&gt;In page I uses discussion board.&lt;/p&gt;
&lt;p&gt;And task:&lt;/p&gt;
&lt;p&gt;News page must to display information about latest discussion board messages. What do you advice to me? (May be I have to use query conten web part or rss viewer.)&lt;/p&gt;</description></item><item><title>Compartir información entre sitios WSS</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5999790</link><pubDate>Fri, 09 Nov 2007 02:48:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5999790</guid><dc:creator>Jorge Dieguez Blog </dc:creator><description>&lt;p&gt;Desde que conozco SharePoint siempre he percibido una gran limitaci&amp;amp;#xF3;n: la imposibilidad de tener&lt;/p&gt;
</description></item><item><title>Compartir información entre sitios WSS</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#5999806</link><pubDate>Fri, 09 Nov 2007 02:49:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5999806</guid><dc:creator>Jorge Dieguez Blog</dc:creator><description>&lt;p&gt;Desde que conozco SharePoint siempre he percibido una gran limitaci&amp;amp;amp;#xF3;n: la imposibilidad de tener&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6180228</link><pubDate>Tue, 13 Nov 2007 21:51:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6180228</guid><dc:creator>Steve Walsh</dc:creator><description>&lt;p&gt;I have a similar question as Somash. I followed the link you provided, but I cannot see how to use this for multiple lists. I want to have 1 COntent Query Web Part, and I want it to get data from 2 seperate lists (List 1 and List 2). Is this possible? If so, how? Please help I have been on this problem for weeks now...&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Steve&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6409100</link><pubDate>Mon, 19 Nov 2007 23:05:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6409100</guid><dc:creator>rich L</dc:creator><description>&lt;p&gt;How do you change the UseCopyUtil parameter? For some reason if we make any edits to the Query Web Part it will default the part so that UseCopyUtil will equal true hence displaying a link to the Item List rather than the link address.&lt;/p&gt;
&lt;p&gt;This is an upgraded site so the List object being used is the Listings list. I have even exported the web part manually changed the UseCopyUtil to false but if anyone makes even the slightest change to the web part it over writes it back to true.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6563962</link><pubDate>Wed, 28 Nov 2007 03:41:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6563962</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Harlan,&lt;/p&gt;
&lt;p&gt;Your content is being encoded by the xsl engine. &amp;nbsp;This is to stop Cross-Site Scripting vulnerabilities, where a malicious user could create an announcement containing javascript. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;-If you trust the content of your announcement, then look into the xsl property disable-output-escaping. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;-If you don't trust the content, then the OuterTemplate.GetColumnDataForUnescapedOutput function allows you to verify that the data is indeed from a column that validates agaisn't OSafe (e.g. Html). &amp;nbsp;(Osafe strip out JavaScript from HTML)&lt;/p&gt;
&lt;p&gt;Hi Nancy,&lt;/p&gt;
&lt;p&gt;Check the ULS logs, they will have information as to why the web part can't display.&lt;/p&gt;
&lt;p&gt;Hi Daniel,&lt;/p&gt;
&lt;p&gt;You will need to inherit from the ContentByQueryWebPart class and use the ProcessData delegate. &amp;nbsp;From there you can modify your date column, place the same value for the ones you want in the same group. &amp;nbsp;Then you can use the AdditionalGroupAndSorting&lt;/p&gt;
&lt;p&gt;Hi Chia,&lt;/p&gt;
&lt;p&gt;Yes, it is a conflict with the Lock Down Feature, try disabling the feature then deactivate and reactivating anonymous access for changes to take effect. &lt;/p&gt;
&lt;p&gt;Hi Peter,&lt;/p&gt;
&lt;p&gt;You can achieve your scenario using JavaScript and DHTML. &amp;nbsp;First start by storing your data into a javascript array and then create a function that populate the right hand side based on the array.&lt;/p&gt;
&lt;p&gt;Hi Christof,&lt;/p&gt;
&lt;p&gt;Make sure that your items are returned first, otherwise you might have to change settings like Content Type and List Template you are requesting. &amp;nbsp;Then add to the CommonViewFields 'WikiField,Note'.&lt;/p&gt;
&lt;p&gt;Hi Dustin,&lt;/p&gt;
&lt;p&gt;The Data Source that the CQWP uses does not handle paging. &amp;nbsp;You could request the top 50 items, display initially 10 and create paging on the client using DHTML &amp;amp; JS.&lt;/p&gt;
&lt;p&gt;Hi james,&lt;/p&gt;
&lt;p&gt;Try File_x0020_Size or File_Size and it should be of type Lookup.&lt;/p&gt;
&lt;p&gt;Hi Steve,&lt;/p&gt;
&lt;p&gt;Look at bartski post above, it has an example of one can achieve this.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6617781</link><pubDate>Fri, 30 Nov 2007 20:15:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6617781</guid><dc:creator>Matthew Vore</dc:creator><description>&lt;p&gt;Everything is/was working fine until I decided to &amp;quot;Group&amp;quot; the results by DatePublished (custom field). It is grouping them just fine, but I can't customize the style of the group headers, We have a dark green background and the text is black (hardly readible). I tracked the style down to Header.xsl and div class=&amp;quot;groupheader item medium&amp;quot;, however when i try to put a custom div class there it doesn't work, and I can't seem tof ind where this div is located, I tried throwing it in my stylesheet and even calling my stylesheet inside header.xsl and nothing has worked, any help would be great!&lt;/p&gt;</description></item><item><title>Debugging XSLT from a Content Query WebPart</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6659431</link><pubDate>Wed, 05 Dec 2007 02:39:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6659431</guid><dc:creator>Imagine Think Create Share</dc:creator><description>&lt;p&gt;Hi, Today I receive several questions about debugging CQWP XSLT. Although I love writing them in Notepad&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6669546</link><pubDate>Wed, 05 Dec 2007 22:21:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6669546</guid><dc:creator>Bonnie</dc:creator><description>&lt;p&gt;I have created a Links list with a content type called FormLink. &amp;nbsp;I'm trying to use a CQWP to display specific links from that links list. &amp;nbsp;It displays them ok, but when you click the link, it takes you into the View Item screen from the list instead of taking you to the URL designated for that item. &amp;nbsp;Ideas on what I've done wrong?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6685539</link><pubDate>Fri, 07 Dec 2007 01:26:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6685539</guid><dc:creator>Todd H.</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have read this and several other articles/blogs regarding the CQWP. Thanks for all of your help so far and your promptness in answering questions.&lt;/p&gt;
&lt;p&gt;My question is simple, I have a &amp;quot;custom list&amp;quot; with a custom column that is a &amp;quot;link&amp;quot; field (linking to content not on my site). When I use the CQWP with this custom list the clickable results of my query always direct me to the actual item on my site not the target of the link in my custom list.&lt;/p&gt;
&lt;p&gt;How can I make the result of my query a custom list's link field, so that users can click on the item returned from the CQWP and go directly to the external site for which the item's link field represents.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;-Todd&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6751697</link><pubDate>Thu, 13 Dec 2007 00:58:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6751697</guid><dc:creator>Raja</dc:creator><description>&lt;p&gt;hi..I need to use the CQWP in a team site. I created the Style Library at the top level site and populated it with content from a publishing site. I can add the web part to the page but it freezes the browser when I try to browse to a list in the web part properties pane..&lt;/p&gt;
&lt;p&gt;Can u please tell me what does it take to make it functional in a team site?&lt;/p&gt;
&lt;p&gt;Thanks in advance..&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6792589</link><pubDate>Tue, 18 Dec 2007 00:43:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6792589</guid><dc:creator>Anil Kumar</dc:creator><description>&lt;p&gt;How can I dispaly a Work flow status column in a list using content query web part.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6845317</link><pubDate>Sun, 23 Dec 2007 16:34:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6845317</guid><dc:creator>itay4x4</dc:creator><description>&lt;p&gt;I've got a list of &amp;quot;course&amp;quot; that i want to dispaly in my welcome page.&lt;/p&gt;
&lt;p&gt;1. I added a CQWP to my welcome page with the following &amp;nbsp; &amp;nbsp;properties --&amp;gt; I've taken the items for a specific list, and the list type is calender.&lt;/p&gt;
&lt;p&gt;2. I exported the file and added description to it (i know that in some cases this data is already included, so i tried both ways)&lt;/p&gt;
&lt;p&gt;3. opend the file in the designer and edited it :&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:template name=&amp;quot;MyView&amp;quot; match=&amp;quot;MyView&amp;quot; mode=&amp;quot;itemstyle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;SafeLinkUrl&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetSafeLink&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'LinkUrl'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;SafeImageUrl&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetSafeStaticUrl&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'ImageUrl'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;DisplayTitle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetTitle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;Title&amp;quot; select=&amp;quot;@Title&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'LinkUrl'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;LinkTarget&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;@OpenInNewWindow = 'True'&amp;quot; &amp;gt;_blank&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div id=&amp;quot;linkitem&amp;quot; class=&amp;quot;item&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;string-length($SafeImageUrl) != 0&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class=&amp;quot;image-area-left&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;a href=&amp;quot;{$SafeLinkUrl}&amp;quot; target=&amp;quot;{$LinkTarget}&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;img class=&amp;quot;image&amp;quot; src=&amp;quot;{$SafeImageUrl}&amp;quot; alt=&amp;quot;{@ImageUrlAltText}&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class=&amp;quot;link-item&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.CallPresenceStatusIconTemplate&amp;quot;/&amp;gt; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;a href=&amp;quot;{$SafeLinkUrl}&amp;quot; target=&amp;quot;{$LinkTarget}&amp;quot; title=&amp;quot;{@LinkToolTip}&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;$DisplayTitle&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@_x0020_Description&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:template&amp;gt;&lt;/p&gt;
&lt;p&gt;4. Its seems that something is not working properly since the view hasnt change&lt;/p&gt;
&lt;p&gt;could you help me please&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6962218</link><pubDate>Thu, 03 Jan 2008 05:49:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6962218</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Matthew,&lt;/p&gt;
&lt;p&gt;It is indeed in the Header.xsl, modify the template that correspond to the group style that is selected in the CQWP Toolpane.&lt;/p&gt;
&lt;p&gt;Hi Bonnie &amp;amp; Todd,&lt;/p&gt;
&lt;p&gt;The url by default for list items are it's view item screen. &amp;nbsp;You will need to modify the xslt and change the value of the url to the value of your column containing your links.&lt;/p&gt;
&lt;p&gt;Hi Raja,&lt;/p&gt;
&lt;p&gt;You can always type the list you want to retrieve.&lt;/p&gt;
&lt;p&gt;Hi Anil,&lt;/p&gt;
&lt;p&gt;You need to request the work flow status column using the CommonViewFields property of the web part and then use the DataColumnRename property and/or modify the xslt to show the column data.&lt;/p&gt;
&lt;p&gt;Hi itay4x4,&lt;/p&gt;
&lt;p&gt;Verify that the Item Style in the Toolpane is now on &amp;quot;MyView&amp;quot;.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#6977940</link><pubDate>Fri, 04 Jan 2008 13:36:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6977940</guid><dc:creator>Thomas Walz</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;i have a content query webpart on my portal. i want to filter the&lt;/p&gt;
&lt;p&gt;data via an url-filter webpart. but the cqwp seems not to use webpart connections. is there any way i can do this ?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Thomas&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7017815</link><pubDate>Mon, 07 Jan 2008 20:37:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7017815</guid><dc:creator>Dave</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to use the CQWP to link to a calendar list that has a Single-value lookup field. And I want it to display this field as a link to a PDF file that this lookup is referencing. I can pull the field a but the best I can get is a link to the calendar item, not to the PDf link in the calendar item.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Dave&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7140582</link><pubDate>Thu, 17 Jan 2008 11:55:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7140582</guid><dc:creator>Dragan Panjkov</dc:creator><description>&lt;p&gt;when I have double quotes inside my RichHTML field, when rolling up inslide cqwp i receive &amp;amp;quot; instead of &amp;quot;&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7140722</link><pubDate>Thu, 17 Jan 2008 12:28:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7140722</guid><dc:creator>Dragan Panjkov</dc:creator><description>&lt;p&gt;solved with disable-output-escaping=&amp;quot;yes&amp;quot;&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7186370</link><pubDate>Mon, 21 Jan 2008 21:02:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7186370</guid><dc:creator>Stephan KW</dc:creator><description>&lt;p&gt;Thx for this sample great walkthrou.&lt;/p&gt;
&lt;p&gt;Is it possible to setup the CQWP to display Items according to the users rights?&lt;/p&gt;
&lt;p&gt;I'd like to display the latest sites within a websitecollection. All these pages have an expire date and disappear after this date. But special groups like the content editors and administrators should be able to see these entries plus the expired entries of the last 10 days.&lt;/p&gt;
&lt;p&gt;Can you tell me how to set it up?&lt;/p&gt;
&lt;p&gt;thx in advance&lt;/p&gt;
&lt;p&gt;Steve&lt;/p&gt;</description></item><item><title>Customizing the content query webpart : Part 2</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7198961</link><pubDate>Tue, 22 Jan 2008 18:04:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7198961</guid><dc:creator>Bart Callaerts</dc:creator><description>&lt;p&gt;In addition to my previous post. I was working on a way to give the announcementslist a better look through&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7205809</link><pubDate>Wed, 23 Jan 2008 09:44:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7205809</guid><dc:creator>Alan Wooley</dc:creator><description>&lt;p&gt;George, &lt;/p&gt;
&lt;p&gt;Great post on this subject!!! I am doing a rollup based on the Posts list of a Blog site in the same collection, but I can't seem to get the body to display. &amp;nbsp;Doing the adjustments that you mention above, I was able to get it very VERY close. Example of what is rendering:&lt;/p&gt;
&lt;p&gt;BLOG UPDATES&lt;/p&gt;
&lt;p&gt;2008/01/23 08:55:00	＜Title＞　&lt;/p&gt;
&lt;p&gt;Author：　＜USER＞　　Created：　2008/01/22&lt;/p&gt;
&lt;p&gt;＜BODY＞...more &lt;/p&gt;
&lt;p&gt;But the BODY part mentioned above, I can't get no matter what I do. &amp;nbsp;I add this to the ItemStyle.xsl:&lt;/p&gt;
&lt;p&gt;&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:value-of select=&amp;quot;substring(@Body, 0, 200)&amp;quot; disable-output-escaping=&amp;quot;yes&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;href=&amp;quot;{$SafeLinkUrl}&amp;quot; target=&amp;quot;{$LinkTarget}&amp;quot; title=&amp;quot;Lees meer&amp;quot;&amp;gt;More...&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;Then I changed the CommonViewFields property in ContentByQueryWebPart.webpart to read: &lt;/p&gt;
&lt;p&gt;&amp;lt;property name=&amp;quot;CommonViewFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;Body,RichHTML&amp;lt;/property&amp;gt;&lt;/p&gt;
&lt;p&gt;Should work, right? Well, it doesn't seem to come out, for some reason. &amp;nbsp;Am I missing a step somewhere? &amp;nbsp; Can you advise what I'm doing wrong? Is it because I'm not specifying something like @Body_x005F_x0020_content? &amp;nbsp;(and how can I easily find what field this is for the Posts list if that is the case?) &lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Alan&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7341592</link><pubDate>Thu, 31 Jan 2008 08:31:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7341592</guid><dc:creator>Senthil</dc:creator><description>&lt;p&gt;Hi ,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I have a lookup field in my content type. I have edited the CustomView propoerty. &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Ex: &amp;nbsp; &amp;nbsp; &amp;nbsp; CommonViewFields=&amp;quot;Title,Text;Comments,Text;Author,User;BookCategory,Lookup;&amp;quot;.&lt;/p&gt;
&lt;p&gt;But it is not displaying the values of the Lookup field. All the other field values are dispalyed in my result.&lt;/p&gt;
&lt;p&gt;can any one help me??&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7354271</link><pubDate>Thu, 31 Jan 2008 20:43:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7354271</guid><dc:creator>Tim Butler</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I'm trying to use a content query web part to show some text and an uploaded image (an attachment) from a custom list. &lt;/p&gt;
&lt;p&gt;I can work out whether each item has an attachment or not using the attachments property but I can't for the life of me figure out where the file is or what the filename might be.&lt;/p&gt;
&lt;p&gt;Is this some kind of known issue which I will never resolve or am I just missing the answer?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7479705</link><pubDate>Wed, 06 Feb 2008 03:59:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7479705</guid><dc:creator>martin</dc:creator><description>&lt;p&gt;I have added a CQWP to the my Intranet home page and want to show all announcements from all sites by &lt;/p&gt;
&lt;p&gt;selecting 'Show items from all sites in this site collection', &lt;/p&gt;
&lt;p&gt;select announcements for 'List Type:'&lt;/p&gt;
&lt;p&gt;select List content type and Announcement under 'Content Type:'&lt;/p&gt;
&lt;p&gt;and have grouped by Site.&lt;/p&gt;
&lt;p&gt;If I select a 'Show items from the following site and all subsites:' eg. /Corporate it works fine but if I select 'Show items from all sites in this site collection' it doesn't return any announcements and shows 'There is a problem with the query that this Web Part is issuing. Check the configuration of this Web Part and try again.' message.&lt;/p&gt;
&lt;p&gt;Any ideas would be much appreciated.&lt;/p&gt;
&lt;p&gt;Martin&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7496007</link><pubDate>Wed, 06 Feb 2008 21:36:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7496007</guid><dc:creator>Peter Hack</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;My problem here is that I have a Hyperlink field in my list, but it displays in the CQWP as text, saying &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://www.kcci.com"&gt;http://www.kcci.com&lt;/a&gt;, &lt;a rel="nofollow" target="_new" href="http://www.kcci.com"&gt;http://www.kcci.com&lt;/a&gt;. (I assume it is displaying twice because its showing the URL and the description from the list field the CQWP is drawing from) It is not displayed as a link though. How can I make the field display properly in the CQWP as a link?&lt;/p&gt;
&lt;p&gt;Thanks in Adavance!!&lt;/p&gt;
&lt;p&gt;- Peter Hack&lt;/p&gt;
&lt;p&gt;From Webpart:&lt;/p&gt;
&lt;p&gt;&amp;lt;property name=&amp;quot;CommonViewFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;Market;Column11;Column13;Column14;Column15;Column16;Website2,url;Column7;Column2;Column9;Column10&amp;lt;/property&amp;gt;&lt;/p&gt;
&lt;p&gt;From XSL:&lt;/p&gt;
&lt;p&gt;- &amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;- &amp;lt;h3&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Market:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Market&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Address:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column11&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column13&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;, &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column14&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column15&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Website:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Website2&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Phone:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column16&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Affiliation:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column7&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;DMA Rank:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column2&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Channels:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column9&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;br /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;FONT COLOR=&amp;quot;000080&amp;quot;&amp;gt;Coverage:&amp;lt;/FONT&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;@Column10&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/h3&amp;gt;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7529292</link><pubDate>Fri, 08 Feb 2008 02:51:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7529292</guid><dc:creator>Chander</dc:creator><description>&lt;p&gt;Hi Folks,&lt;/p&gt;
&lt;p&gt;How to get the Image displayed on the Left in the &amp;quot;image on Left&amp;quot; item style?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Chander&lt;/p&gt;</description></item><item><title>SharePoint AcademyLive Recommended Readings</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7722033</link><pubDate>Sat, 16 Feb 2008 00:09:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7722033</guid><dc:creator>Brett's SharePoint Blog</dc:creator><description>&lt;p&gt;This won't mean too much for those of you who aren't attending the AcademyLive courses, but here are&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7836227</link><pubDate>Thu, 21 Feb 2008 15:13:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7836227</guid><dc:creator>Charlene Jacobs</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I have created a custom content query web part to show and image and the body od announcement. The body is showing but my image is unfortunately not. &lt;/p&gt;
&lt;p&gt;I have change the commonviewfileds property to:&lt;/p&gt;
&lt;p&gt;&amp;lt;property name=&amp;quot;CommonViewFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;Body, RichHTML;AnnouncementImageURL, URL;&amp;lt;/property&amp;gt;&lt;/p&gt;
&lt;p&gt;And also made the adjustments in the ItemStlye.xsl file but image is still not showing in the web part.&lt;/p&gt;
&lt;p&gt;The image link is working though, I can see image when I test it.&lt;/p&gt;
&lt;p&gt;Please help.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>Content Query Webpart fun!</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7845859</link><pubDate>Fri, 22 Feb 2008 11:02:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7845859</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;Body: I&amp;amp;#39;ve been poking around an existing web part and have been having real troubles in pulling&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7897308</link><pubDate>Tue, 26 Feb 2008 02:49:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7897308</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Thomas,&lt;/p&gt;
&lt;p&gt;Web Part connections is not supported out of the box. &amp;nbsp;You'll need to create a new class that inherits the Content Query Web Part [CQWP].&lt;/p&gt;
&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;Your almost there, place the value that you are pulling into the A link href of your XSL.&lt;/p&gt;
&lt;p&gt;Hi Dragan,&lt;/p&gt;
&lt;p&gt;Your content is being encoded by the xsl engine. &amp;nbsp;This is to stop Cross-Site Scripting vulnerabilities, where a malicious user could create an announcement containing javascript. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;-If you trust the content of your announcement, then look into the xsl property disable-output-escaping. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;-If you don't trust the content, then the OuterTemplate.GetColumnDataForUnescapedOutput function allows you to verify that the data is indeed from a column that validates agaisn't OSafe (e.g. Html). &amp;nbsp;(Osafe strip out JavaScript from HTML)&lt;/p&gt;
&lt;p&gt;Hi Steve,&lt;/p&gt;
&lt;p&gt;Only items that users have rights to see will show up in the CQWP.&lt;/p&gt;
&lt;p&gt;Hi Alan,&lt;/p&gt;
&lt;p&gt;Most likely Posts list put their content in a site column that is a different name. &amp;nbsp;Check your list settings -&amp;gt; site content type -&amp;gt; site columns to find out what the internal name is for the HTML Content.&lt;/p&gt;
&lt;p&gt;Hi Senthil,&lt;/p&gt;
&lt;p&gt;Check that your column name or the type is correct (is it a Choice column?)&lt;/p&gt;
&lt;p&gt;Hi Tim,&lt;/p&gt;
&lt;p&gt;Attachment data is located in a seperate database table, to get your data, you will need to inherit the CQWP and then for each row that has attachment make a call to sharepoint to retrieve the list of attachment for that item.&lt;/p&gt;
&lt;p&gt;Hi Martin,&lt;/p&gt;
&lt;p&gt;Most likely you've hit the MaxListlimit. &lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.spsitedataquery.lists.aspx"&gt;http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.spsitedataquery.lists.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hi Peter,&lt;/p&gt;
&lt;p&gt;Check the OuterTemplate.FormatColumnIntoUrl and OuterTemplate.FormatValueIntoUrl &lt;/p&gt;
&lt;p&gt; XSL function provided out of the box.&lt;/p&gt;
&lt;p&gt;Hi Chander,&lt;/p&gt;
&lt;p&gt;Out of the box it is mapped to the PublishingRollupImage site column.&lt;/p&gt;
&lt;p&gt;Hi Charlene,&lt;/p&gt;
&lt;p&gt;The Out of the box image is mapped to the PublishingRollupImage. &amp;nbsp;Check that you either used the DataColumnRename web part property to remap AnnoucementImageUrl to ImageUrl. &amp;nbsp;Or modified the XSL and replaced occurences of ImageUrl to AnnoucementImageURL.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7900899</link><pubDate>Tue, 26 Feb 2008 11:58:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7900899</guid><dc:creator>Maarten</dc:creator><description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;I've got an issue regarding the content query webpart. I'm developing a webpart which shows newsitems filtered by audience; so users see only their local office news items. (e.g. users from our office in Amsterdam only see news articles regarding that office)&lt;/p&gt;
&lt;p&gt;Here's the issue:&lt;/p&gt;
&lt;p&gt;When I apply a rowfilter the following happens: e.g. when I set the rowfilter to 5 items, the Content Query Webpart selects the 5 items from the ENTIRE newsitem list. After that, the audience filter is applied. &lt;/p&gt;
&lt;p&gt;So, e.g. if the top 5 newsitems are targeted to the Londen audience, a user in Amsterdam won't see any newsitem at all!&lt;/p&gt;
&lt;p&gt;I've tried to apply a rowfilter on the itemstyle.xsl xsl template with no success... Does anyone have a suggestion how to solve this?&lt;/p&gt;
&lt;p&gt;Thanks a million!&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Maarten&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#7901149</link><pubDate>Tue, 26 Feb 2008 12:27:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7901149</guid><dc:creator>ChristosK</dc:creator><description>&lt;p&gt;trivial Qs:&lt;/p&gt;
&lt;p&gt;In step 4, you change the XSLT itemstyle. &lt;/p&gt;
&lt;p&gt;Is this XSLT bound to any instance of CQWP?&lt;/p&gt;
&lt;p&gt;I want to use CQWP multiple times in several pages doing different things. Can i have multiple &amp;quot;itemstylexx.XSL&amp;quot; files in &amp;lt;styles library&amp;gt;?Can i use Folders in styles library??&lt;/p&gt;
&lt;p&gt;I really wouldn't want a BIG itemstyle.xslt&lt;/p&gt;
&lt;p&gt;Thanks &lt;/p&gt;
&lt;p&gt;ChristosK&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8048519</link><pubDate>Wed, 05 Mar 2008 11:16:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8048519</guid><dc:creator>Kris White</dc:creator><description>&lt;p&gt;George,&lt;/p&gt;
&lt;p&gt;My custom CQWP is working fine and the body is showing up as well. Thanks for the great tip.&lt;/p&gt;
&lt;p&gt;Now, for my problem:&lt;/p&gt;
&lt;p&gt;My custom CQWP is connecting to an Announcements list on anther site in my portal. The data comeup fine and when I click on the title or '(more)' links, the DispForm.aspx for the particular announcement is displayed. However, when I click on the 'Close' button on the DispForm.aspx page, I get redirected to the actual Announcement list in 'AllItems' view. &amp;nbsp;What I want is to be redirected back to the page where I came from, ie. the one conataining the custom CQWP.&lt;/p&gt;
&lt;p&gt;Do you know how I can do this?&lt;/p&gt;
&lt;p&gt;Kris&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8075837</link><pubDate>Thu, 06 Mar 2008 21:49:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8075837</guid><dc:creator>SIQ Max</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have same problem as Peter Hack has, tried both OuterTemplate.FormatColumnIntoUrl and OuterTemplate.FormatValueIntoUrl &lt;/p&gt;
&lt;p&gt;the result is same&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8135862</link><pubDate>Mon, 10 Mar 2008 21:21:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8135862</guid><dc:creator>Ernie B</dc:creator><description>&lt;p&gt;Hey,&lt;/p&gt;
&lt;p&gt;First, I'd like to say great post! &amp;nbsp;Lots of great info here. &amp;nbsp;I'm currently workin on project and was able to add all the necessary fields into the CQWP. &amp;nbsp;The issue i'm having is now with formatting the PublishingStartDate field. &amp;nbsp;As is, the field displays as (2008-03-28 07:00:00). &amp;nbsp;What i would like to do is reformat this to a more user friendly format, like (March 3, 2008) eliminating the time all together. &amp;nbsp;I tried creating a template to reformat and calling the template but i'm not sure i'm doin it right. &amp;nbsp;Here is my code for the templates:&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:template name=&amp;quot;URLwithDate&amp;quot; match=&amp;quot;Row[@Style='URLwithDate']&amp;quot; mode=&amp;quot;itemstyle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:variable name=&amp;quot;DisplayTitle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.GetTitle&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;Title&amp;quot; select=&amp;quot;@URL&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;UrlColumnName&amp;quot; select=&amp;quot;'URL'&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;lt;xsl:variable name=&amp;quot;LinkTarget&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:if test=&amp;quot;@OpenInNewWindow = 'True'&amp;quot; &amp;gt;_blank&amp;lt;/xsl:if&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;lt;/xsl:variable&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;lt;xsl:element name=&amp;quot;NewDate&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;			 &amp;lt;xsl:variable name=&amp;quot;FormattedDate&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;			 	&amp;lt;xsl:call-template name=&amp;quot;FormatDate&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;			 		&amp;lt;xsl:with-param name=&amp;quot;DateTime&amp;quot; select=&amp;quot;@PublishingStartDate&amp;quot;/&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt;			 	&amp;lt;/xsl:call-template&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;			 &amp;lt;/xsl:variable&amp;gt; &lt;/p&gt;
&lt;p&gt;		 &amp;lt;/xsl:element&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;lt;div id=&amp;quot;linkitem&amp;quot; class=&amp;quot;item&amp;quot; &amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;&amp;lt;div class=&amp;quot;&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp; &amp;lt;xsl:call-template name=&amp;quot;OuterTemplate.CallPresenceStatusIconTemplate&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;&amp;lt;table&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;	&amp;lt;tr&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;		&amp;lt;td&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;			&amp;lt;a&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp;&amp;lt;xsl:attribute name=&amp;quot;href&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp; &amp;lt;xsl:value-of select=&amp;quot;substring-before($DisplayTitle,', ')&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:value-of&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:attribute&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp;&amp;lt;xsl:attribute name=&amp;quot;title&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp; &amp;lt;xsl:value-of select=&amp;quot;@Description&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:value-of&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:attribute&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;substring-after($DisplayTitle,', ')&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;					 &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:value-of&amp;gt;&lt;/p&gt;
&lt;p&gt;				 &amp;nbsp; 	&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;		&amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;		&amp;lt;td align=&amp;quot;right&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;			 &amp;nbsp; &amp;nbsp;	&amp;lt;xsl:value-of select=&amp;quot;@PublishingStartDate&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;			 &amp;nbsp; &amp;nbsp;&amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;	&amp;lt;/tr&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;&amp;lt;/table&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;		 &amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;/xsl:template&amp;gt;	&lt;/p&gt;
&lt;p&gt;	&amp;lt;!-- Convert CAML Date/Time to Standard Date --&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;xsl:template name=&amp;quot;FormatDate&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;!-- expected date format 1/20/2007 10:22:28 PM [OR] 01/20/2007 10:22:28 PM --&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:param name=&amp;quot;DateTime&amp;quot;/&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;!-- new date format January 20, 2007 --&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:variable name=&amp;quot;mo&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:value-of select=&amp;quot;substring-before($DateTime,'/')&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:variable&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:variable name=&amp;quot;day-temp&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:value-of select=&amp;quot;substring-after($DateTime,'/')&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:variable&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:variable name=&amp;quot;day&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:value-of select=&amp;quot;substring-before($day-temp,'/')&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:variable&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:variable name=&amp;quot;year-temp&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:value-of select=&amp;quot;substring-after($day-temp,'/')&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:variable&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:variable name=&amp;quot;year&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:value-of select=&amp;quot;substring($year-temp,1,4)&amp;quot; /&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:variable&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:choose&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '1' or $mo = '01'&amp;quot;&amp;gt;January&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '2' or $mo = '02'&amp;quot;&amp;gt;February&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '3' or $mo = '03'&amp;quot;&amp;gt;March&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '4' or $mo = '04'&amp;quot;&amp;gt;April&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '5' or $mo = '05'&amp;quot;&amp;gt;May&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '6' or $mo = '06'&amp;quot;&amp;gt;June&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '7' or $mo = '07'&amp;quot;&amp;gt;July&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '8' or $mo = '08'&amp;quot;&amp;gt;August&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '9' or $mo = '09'&amp;quot;&amp;gt;September&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '10'&amp;quot;&amp;gt;October&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '11'&amp;quot;&amp;gt;November&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;$mo = '12'&amp;quot;&amp;gt;December&amp;lt;/xsl:when&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:choose&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:value-of select=&amp;quot;' '&amp;quot;/&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:if test=&amp;quot;(string-length($day) &amp;amp;lt; 2)&amp;quot;&amp;gt; &lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:value-of select=&amp;quot;0&amp;quot;/&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;/xsl:if&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:value-of select=&amp;quot;$day&amp;quot;/&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:value-of select=&amp;quot;', '&amp;quot;/&amp;gt; &lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:value-of select=&amp;quot;$year&amp;quot;/&amp;gt; &lt;/p&gt;
&lt;p&gt;	&amp;lt;/xsl:template&amp;gt; &lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;Any thoughts? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ernie B.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8184293</link><pubDate>Thu, 13 Mar 2008 22:16:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8184293</guid><dc:creator>Lola</dc:creator><description>&lt;p&gt;I am creating a CQWP from a calendar list. I need to show not only the name of the meeting but the link to the Workspace (which shows as a check box that you click when you create the meeting). The only thing I know about the workspace in the calendar is that the type is called a Cross Project Link. When I am in the webpart code changing the CommonViewFields, I don’t know what the hex code for that field is and I don’t know how to refer to the type=”” in the property line.&lt;/p&gt;
&lt;p&gt;&amp;quot;CommonViewFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;Body_x0020_content,RichHTML&amp;lt;/property&amp;gt;&lt;/p&gt;
&lt;p&gt;Please help!!&lt;/p&gt;
&lt;p&gt;Related to that, is there anyway I can change the type of workspace related to a calendar? Instead of being a Meeting Workspace to be a Document Workspace for example?&lt;/p&gt;
&lt;p&gt;Thanks &lt;/p&gt;</description></item><item><title>Content Query Web Part - Unable to Activate the Publishing Infrastructure</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8326268</link><pubDate>Thu, 20 Mar 2008 00:02:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8326268</guid><dc:creator>The Boiler Room - Mark Kruger, Microsoft SharePoint MVP</dc:creator><description>&lt;p&gt;So you want the Content Query Web Part but you&amp;amp;#39;re running into issues implementing it... First let&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8336956</link><pubDate>Wed, 26 Mar 2008 04:31:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8336956</guid><dc:creator>ecmblog</dc:creator><description>&lt;p&gt;Hi Maarten,&lt;/p&gt;
&lt;p&gt;You will need to remove the item limit from the Toolpane, and then use XSLT to limit to showing only the first 5 results.&lt;/p&gt;
&lt;p&gt;Hi ChristosK,&lt;/p&gt;
&lt;p&gt;The out of the box Content Query Web Part [CQWP] use the three XSLT that we install. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can modify any CQWP instances to use a different XSLT by changing one of the HeaderXslLink, ItemXslLink and MainXslLink web part property.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.cmsdataformwebpart.headerxsllink.aspx"&gt;http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.cmsdataformwebpart.headerxsllink.aspx&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.cmsdataformwebpart.itemxsllink.aspx"&gt;http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.cmsdataformwebpart.itemxsllink.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.cmsdataformwebpart.mainxsllink.aspx"&gt;http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.cmsdataformwebpart.mainxsllink.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hi Kris,&lt;/p&gt;
&lt;p&gt;You can do so by modifying the ContentQueryMain xslt and modify the CopyUtil line to pass a Source query string parameter. &amp;nbsp;This Source query string will be where the user will be returned after clicking Close.&lt;/p&gt;
&lt;p&gt;Hi SIQ Max,&lt;/p&gt;
&lt;p&gt;You can write your own XSLT function that will strip out the description from your URL.&lt;/p&gt;
&lt;p&gt;Hi Ernie B,&lt;/p&gt;
&lt;p&gt;Have you tried to use the runtime function FormatDateTime:&lt;/p&gt;
&lt;p&gt; &amp;lt;xsl:value-of select=&amp;quot;ddwrt:FormatDateTime(string(@Created) ,1033 ,'dd-MM-yyyy hh:mm')&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;Hi Lola,&lt;/p&gt;
&lt;p&gt;Go to Site Settings -&amp;gt; Site Columns -&amp;gt; Click on your column&lt;/p&gt;
&lt;p&gt;Then check the URL of the current page, and find the field=ColumnName&lt;/p&gt;
&lt;p&gt;This is the value you want to put inside your CommonViewFields.&lt;/p&gt;
&lt;p&gt;Usually this will be the same as the column name.&lt;/p&gt;
&lt;p&gt;Adri Verlaan [MSFT]&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8354015</link><pubDate>Thu, 03 Apr 2008 17:48:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8354015</guid><dc:creator>piyush</dc:creator><description>&lt;p&gt;hi to get the name of list inside the &amp;nbsp;Item style.xslt &lt;/p&gt;
&lt;p&gt;can we use &lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:value-of select=&amp;quot;substring-before(substring-after(@FileRef,'Lists/'),'/')&amp;quot;&amp;gt;&amp;lt;/xsl:value-of&amp;gt;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8376236</link><pubDate>Thu, 10 Apr 2008 22:59:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8376236</guid><dc:creator>Kirsten</dc:creator><description>&lt;p&gt;Hi, great post...thanks to you I was able to display an additional Status field in a Content Query Web Part. &amp;nbsp;I'm having an issue with the additional filters though. &amp;nbsp;I'm trying to roll-up task lists from sub-sites onto a main Project site. &amp;nbsp;When I do this with no additional fields, all items are displayed. &amp;nbsp;I need to filter out the Completed tasks though. &amp;nbsp;I've tried setting the additional filters to Status is not equal to Completed, but when I do that I get &amp;quot;This query has returned no items. To configure the query for this Web Part, open the tool pane.&amp;quot; in the web part results panel.&lt;/p&gt;
&lt;p&gt;Any ideas for me? &amp;nbsp;I'm at a loss after trying every combination I can think of. &amp;nbsp;Thanks in advance for any assistance.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8398807</link><pubDate>Wed, 16 Apr 2008 12:08:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8398807</guid><dc:creator>Per</dc:creator><description>&lt;p&gt;To Adam (post from Wednesday, March 07, 2007 1:34 AM) and who it might concern.&lt;/p&gt;
&lt;p&gt;There is a way to retrieve the name of the list (and the name of the site) when using CQWP. I have digged deep and found a way to do this. &lt;/p&gt;
&lt;p&gt;You need to set the ViewFieldsOverride property on the webpart and add &amp;lt;ListProperty Name=&amp;quot;Title&amp;quot; /&amp;gt; and &amp;lt;ProjectProperty Name=&amp;quot;Title&amp;quot; /&amp;gt;. You must however also add all default fields (like Title and so on) since CQWP does not add them when ViewFieldsOverride is set.&lt;/p&gt;
&lt;p&gt;I have a (hopefully) more clear instruction on my blog:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://sharepoint-tweaking.blogspot.com/2008/04/displaying-listname-and-sitename-when.html"&gt;http://sharepoint-tweaking.blogspot.com/2008/04/displaying-listname-and-sitename-when.html&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8401117</link><pubDate>Thu, 17 Apr 2008 07:58:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8401117</guid><dc:creator>Maria</dc:creator><description>&lt;p&gt;I have only had luck with the CQWP when querying data that is associated with a content type. &amp;nbsp;I can't seem to get the CQWP to work or return any results when I am just trying to query list data from a site and all of its subsites without having a content type associated. &amp;nbsp;Any ideas? &amp;nbsp;I am running out...&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8416845</link><pubDate>Tue, 22 Apr 2008 19:50:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8416845</guid><dc:creator>sbendigo</dc:creator><description>&lt;p&gt;All- I am using MOSS 2007 and don't have the CQWP. Is there something I have to do to enable that web part in the list?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8437835</link><pubDate>Tue, 29 Apr 2008 17:42:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8437835</guid><dc:creator>Saurabh</dc:creator><description>&lt;p&gt;Hello EveryOne........I am using MOSS 2007......i have created a Top Level Site and created a WebPart Page in that ..... and then i Edit that WebPart Page.......but when i click on Add Web Part a window pops up but there is not option for Adding Content Query WebPart.......&lt;/p&gt;
&lt;p&gt;plz help me out........where i m wrong.....??&lt;/p&gt;</description></item><item><title>Note on Customizing Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8516341</link><pubDate>Sat, 17 May 2008 06:08:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8516341</guid><dc:creator>Colt Kwong Blog</dc:creator><description>&lt;p&gt;Content Query Web Part (CQWP) is a powerful feature in SharePoint, where users can create custom view&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8525211</link><pubDate>Wed, 21 May 2008 02:15:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8525211</guid><dc:creator>Smith</dc:creator><description>&lt;p&gt;currently i am able to display custom columns using CQWP, i wanted to add more... at the bottom of content query webpart, but i am getting more.... &amp;nbsp;for each row items, i just need to add a more... going to separate page (this could be any page for eg www.google.com)&lt;/p&gt;
&lt;p&gt;how to achieve this in itemstyle.xsl&lt;/p&gt;
&lt;p&gt;some thing like this, any body had similar requirements please help&lt;/p&gt;
&lt;p&gt;title1 &amp;nbsp; description1&lt;/p&gt;
&lt;p&gt;title2 &amp;nbsp; description2&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;more...&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8539166</link><pubDate>Fri, 23 May 2008 16:02:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8539166</guid><dc:creator>dasy</dc:creator><description>&lt;p&gt;Great information!&lt;/p&gt;
&lt;p&gt;I would like to be able to show a count in my web part of how many items are returned - how do I get that?&lt;/p&gt;
&lt;p&gt;thanks!&lt;/p&gt;</description></item><item><title>修改MOSS内容查询WebPart的默认显示方式</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8550991</link><pubDate>Sun, 25 May 2008 17:15:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8550991</guid><dc:creator>莫斯</dc:creator><description>&lt;p&gt;在OfficeSharePointServer2007中的内容查询WebPart默认为标题列，如何以名称列显示，方法如下：&lt;/p&gt;
&lt;p&gt;1.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8553462</link><pubDate>Tue, 27 May 2008 00:42:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8553462</guid><dc:creator>Hector</dc:creator><description>&lt;p&gt;Hi! Could you elaborate on this:&lt;/p&gt;
&lt;p&gt;&amp;quot;Hi Tim,&lt;/p&gt;
&lt;p&gt;Attachment data is located in a seperate database table, to get your data, you will need to inherit the CQWP and then for each row that has attachment make a call to sharepoint to retrieve the list of attachment for that item.&amp;quot;&lt;/p&gt;
&lt;p&gt;or give some pointers&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8558966</link><pubDate>Thu, 29 May 2008 18:41:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8558966</guid><dc:creator>slp</dc:creator><description>&lt;p&gt;Do you know where you would make specifications for the width of a webpart? by default they are way to wide for my design, and i can't seem to find the style to overwite it. Any pointers?&lt;/p&gt;</description></item><item><title>The work at home institute.</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8574407</link><pubDate>Thu, 05 Jun 2008 04:46:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8574407</guid><dc:creator>Work at home http.</dc:creator><description>&lt;p&gt;Home computer work. Work from home. Envelope stuffing work from home. Work at home. Work home time tracking software.&lt;/p&gt;
</description></item><item><title>修改MOSS内容查询WebPart的默认显示方式</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8579978</link><pubDate>Sat, 07 Jun 2008 17:17:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8579978</guid><dc:creator>莫斯</dc:creator><description>&lt;p&gt;在Office SharePoint Server 2007中的内容查询Web Part默认为标题列，如何以名称列显示，方法如下：&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8645986</link><pubDate>Tue, 24 Jun 2008 09:51:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8645986</guid><dc:creator>Avanti</dc:creator><description>&lt;p&gt;Hi ..&lt;/p&gt;
&lt;p&gt;Is there any way to access the ItemLimit property of the CQWP in the Itemstyle.xsl so that i can display the More link depending on the number of items that are specified in this property?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8663462</link><pubDate>Sat, 28 Jun 2008 15:15:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8663462</guid><dc:creator>Hani</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;you told Alex he can do this &lt;/p&gt;
&lt;p&gt;1. &amp;nbsp;Yes, it is possible to use data from other sources but will require some coding. &amp;nbsp;First retrieve the data from your source and convert it to a DataTable. &amp;nbsp;Then set your resulting DataTable into the &amp;quot;Data&amp;quot; property of the CQWP. &amp;nbsp;From there the CQWP will use the data provided instead.&lt;/p&gt;
&lt;p&gt;how i can do?&lt;/p&gt;
&lt;p&gt;I want to retrieve data from 7 list and they in different site, and they not child for one &lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Hani Qasem&lt;/p&gt;</description></item><item><title>Displaying a presence icon in the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8721646</link><pubDate>Fri, 11 Jul 2008 19:45:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8721646</guid><dc:creator>Christian Agerbeck's Blog</dc:creator><description>&lt;p&gt;Displaying a presence icon in the Content Query Web Part&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8737306</link><pubDate>Wed, 16 Jul 2008 10:19:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8737306</guid><dc:creator>meera</dc:creator><description>&lt;p&gt;Very &amp;nbsp;helpful post indeed. Have u ever tried customizing the date format in CQWP......??&lt;/p&gt;
&lt;p&gt;When I query the Created field in a document libary the date is displayed as :&lt;/p&gt;
&lt;p&gt;2008-07-15 14:21:01&lt;/p&gt;
&lt;p&gt;Is there any way to change this to mm/dd/yy hh:mm format????&lt;/p&gt;
&lt;p&gt;Please help.&lt;/p&gt;
&lt;p&gt;Many thanx in advance&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8747116</link><pubDate>Fri, 18 Jul 2008 09:24:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8747116</guid><dc:creator>meera</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt; I just want to find out if the source list name can als be dispalyed along with the items ie., if I have my CQWP crawls data from 3 document libraries in a site, is it possible to indicate which data is from which doclib as shown below .&lt;/p&gt;
&lt;p&gt;Document 1 - doclib a&lt;/p&gt;
&lt;p&gt;Document 2- doclib x&lt;/p&gt;
&lt;p&gt;Document 3 - doclib p&lt;/p&gt;
&lt;p&gt; .....and so on?????&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8750391</link><pubDate>Fri, 18 Jul 2008 20:35:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8750391</guid><dc:creator>Rob</dc:creator><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I was wondering - I have a custom column type is Person or Group.&lt;/p&gt;
&lt;p&gt;I am having trouble getting anything to show in my CQWP. &amp;nbsp;I've tried setting the field type in the CommonViewFields as Text, User, Person - but nothing seems to work. &amp;nbsp;Any ideas?&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8753869</link><pubDate>Sat, 19 Jul 2008 10:44:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8753869</guid><dc:creator>Waldek Mastykarz</dc:creator><description>&lt;p&gt;It is possible to page the results of a Content Query Web Part query. Some time ago already I have wrote an article about it, plus I have published an extended version of the CQWP which supports paging. You can find more information on my blog @ &lt;a rel="nofollow" target="_new" href="http://blog.mastykarz.nl/2008/04/12/paging-content-query-web-part/"&gt;http://blog.mastykarz.nl/2008/04/12/paging-content-query-web-part/&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8850006</link><pubDate>Tue, 12 Aug 2008 09:15:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8850006</guid><dc:creator>Paul Noone</dc:creator><description>&lt;p&gt;I'd like to create a Related Documents web part (as mentioned above) which will allow people to add links (with Summary Links WP or using CQWP) and display the following:&lt;/p&gt;
&lt;p&gt;DocIcon &amp;nbsp;Filename &amp;nbsp;FileSize&lt;/p&gt;
&lt;p&gt;Unfortunately, desptigin having gone to great lengths to discover these column names, they do not appear to be usable in this way.&lt;/p&gt;
&lt;p&gt;Any suggestions on how to grab this most useful data for file lists??&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8859656</link><pubDate>Wed, 13 Aug 2008 20:25:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8859656</guid><dc:creator>AMD</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thanks for the great post. &lt;/p&gt;
&lt;p&gt;I have one additional requirement. i.e. I have list with one column containing &amp;quot;multiple select&amp;quot; enabled. Column is choice type and selection is check box. With this user will be able to select multiple etnires for the row. &lt;/p&gt;
&lt;p&gt;Now requirement is we need to extract rows which contains specific data and display the same in Content Query Web Part. For example I have one row with Sharepoint 2003 &amp;amp; other row with sharepoint 2003 and MOSS 2007 selected. Data query filter should be set to only extract sites wilth 2003 only.&lt;/p&gt;
&lt;p&gt;Please advice.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;</description></item><item><title>Zolpidem overdose.</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8881495</link><pubDate>Wed, 20 Aug 2008 19:08:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8881495</guid><dc:creator>Zolpidem.</dc:creator><description>&lt;p&gt;Cheap zolpidem. Zolpidem ambien.&lt;/p&gt;
</description></item><item><title>Lipitor.</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8888320</link><pubDate>Fri, 22 Aug 2008 20:18:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8888320</guid><dc:creator>Lipitor memory loss.</dc:creator><description>&lt;p&gt;Lipitor and anxiety. Lipitor and its bad effects. Lipitor. Lipitor pricing. Nicain and lipitor.&lt;/p&gt;
</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8924207</link><pubDate>Thu, 04 Sep 2008 13:37:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8924207</guid><dc:creator>frikouflios</dc:creator><description>&lt;p&gt;Hello to all, a big big thanks to George for this great article.... &lt;/p&gt;
&lt;p&gt;but i have an issue...... &lt;/p&gt;
&lt;p&gt;in the list that CQWP display i have enable the Audiences. So when i login like Admin the CQWP working fine (with my custom field everything that i was added in ItemStyle.xsl) but when i login with another account then the CQWP display the default value (only the title and not the custom field)&lt;/p&gt;
&lt;p&gt;any ideas????&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8926008</link><pubDate>Fri, 05 Sep 2008 09:58:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8926008</guid><dc:creator>frikouflios</dc:creator><description>&lt;p&gt;Follow up to above...&lt;/p&gt;
&lt;p&gt;OK i solve the issue..... the problem was &amp;nbsp;with the permissions in Style Library. I don't know &amp;nbsp;what exactly i done and if this the correct way....&lt;/p&gt;
&lt;p&gt;my steps was&lt;/p&gt;
&lt;p&gt;in Style Library : Settings --&amp;gt; Document Library Settings --&amp;gt; Permissions for this document library &amp;nbsp;--&amp;gt; select all groups --&amp;gt; Actions --&amp;gt; Inherit permissions&lt;/p&gt;
&lt;p&gt;Now i think i have a permissions issue!!! I'' do some tests and i'll inform the blog.&lt;/p&gt;
&lt;p&gt;I'd like to know your opinion about this issue......&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8952072</link><pubDate>Mon, 15 Sep 2008 06:09:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8952072</guid><dc:creator>jriesen</dc:creator><description>&lt;p&gt;I would like to add the CQWP to my site definition based on the comments from Bisbjerg on Nov. 4 2006. &amp;nbsp;I am assuming that the XML should be pasted into the Modules section of the onet.xml file. &amp;nbsp;Does it need to be placed inside a CDATA section? &amp;nbsp;Do I only need to grab the content starting and ending with the &amp;lt;webpart&amp;gt; tag? &amp;nbsp;Or is the &amp;lt;webparts&amp;gt; tag also required? &amp;nbsp;We are using MOSS 2007, if that makes any difference. &amp;nbsp;Thanks in advance for your help.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8953944</link><pubDate>Tue, 16 Sep 2008 17:19:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8953944</guid><dc:creator>jriesen</dc:creator><description>&lt;p&gt;Just as a follow-up to my message on Sept 14. &amp;nbsp;I tried adding the webpart both ways and get an error. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Web Part Error: The file format is not valid. Try importing a Web Part file (.WebPart).&lt;/p&gt;
&lt;p&gt;The trouble is that I don't want to import it. &amp;nbsp;I want the page to be pre-built so the no manual intervention is required.&lt;/p&gt;
&lt;p&gt;Is this possible?&lt;/p&gt;
&lt;p&gt;I am not finding any helpful information on the internet in this regard.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8957206</link><pubDate>Thu, 18 Sep 2008 15:28:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8957206</guid><dc:creator>Sue</dc:creator><description>&lt;p&gt;I have a CQWP that displays the current day's events from a calendar. Is there anyway to display the attachment icon for those events that do have attachements??&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8968708</link><pubDate>Mon, 29 Sep 2008 13:59:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8968708</guid><dc:creator>Hardik</dc:creator><description>&lt;p&gt;Hi , I would like to configure CQWP in such a way that it should allow me to select the products I want to display rather than displaying latest 5 products.. Is there any way to achieve that?&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8971416</link><pubDate>Wed, 01 Oct 2008 14:02:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8971416</guid><dc:creator>Bart de Jonge</dc:creator><description>&lt;p&gt;Hello Hardik,&lt;/p&gt;
&lt;p&gt;You can add a new sitecolumn to your library (eg showonpage as a boolean). &lt;/p&gt;
&lt;p&gt;Export the cqwp and add the new sitecolumn to the AdditionalGroupAndSortFields like this:&lt;/p&gt;
&lt;p&gt;&amp;lt;property name=&amp;quot;AdditionalGroupAndSortFields&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;showonpage &amp;lt;/property&amp;gt; after importing you can use showonpage as a filter&lt;/p&gt;
&lt;p&gt;hope it helps.&lt;/p&gt;</description></item><item><title>re: Configuring and Customizing the Content Query Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#8972123</link><pubDate>Wed, 01 Oct 2008 22:54:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8972123</guid><dc:creator>SteveD</dc:creator><description>&lt;p&gt;I have modified my CQWP to receive @Body. I have removed the content within &amp;lt; &amp;gt;. However, I still have &amp;amp;quot; with body content. This is from users entering blogs from Word - ie. the fancy &amp;quot; &amp;quot;.&lt;/p&gt;
&lt;p&gt;Every method I have tried to replace or truncate the &amp;amp;quot; from the @Body, basically breaks the webpart, as it is removing actual quotes etc from the XML stream.&lt;/p&gt;
&lt;p&gt;#1&lt;/p&gt;
&lt;p&gt;	&amp;lt;!--&lt;/p&gt;
&lt;p&gt;	&amp;lt;xsl:template name=&amp;quot;removequotes&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;		&amp;lt;xsl:param name=&amp;quot;StringToTransform&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp;&amp;lt;xsl:choose&amp;gt;&lt;/p&gt;
&lt;p&gt;			&amp;lt;xsl:when test=&amp;quot;contains($StringToTransform,'&amp;amp;quot;')&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;		&amp;lt;xsl:value-of select=&amp;quot;translate($StringToTransform,'&amp;amp;quot;','')&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;		&amp;lt;/xsl:when&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsl:otherwise&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:value-of select=&amp;quot;$StringToTransform&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsl:otherwise&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;	&amp;lt;/xsl:choose&amp;gt;&lt;/p&gt;
&lt;p&gt;	&amp;lt;/xsl:template&amp;gt;&lt;/p&gt;
&lt;p&gt;	--&amp;gt;&lt;/p&gt;
&lt;p&gt;#2&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:call-template name=&amp;quot;replace-string&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;text&amp;quot; select=&amp;quot;substring-after($text,$replace)&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;replace&amp;quot; select=&amp;quot;$replace&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsl:with-param name=&amp;quot;with&amp;quot; select=&amp;quot;$with&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsl:call-template&amp;gt;&lt;/p&gt;</description></item><item><title>Content Query Web Part - Field Types</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#9161329</link><pubDate>Mon, 01 Dec 2008 22:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9161329</guid><dc:creator>Brian Caauwe</dc:creator><description>&lt;p&gt;Over the last few months I have had to configure various Content Query Web Parts (CQWP) to provide portal&lt;/p&gt;
</description></item><item><title>SharePoint - ContentQueryWebPart, CommonViewFields and Multi-value choices</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#9168274</link><pubDate>Wed, 03 Dec 2008 07:46:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9168274</guid><dc:creator>John Liu's SSW Blog</dc:creator><description>&lt;p&gt;When you add a choice or lookup to the CommonViewField for a ContentQueryWebPart, if you had ticked the&lt;/p&gt;
</description></item><item><title>SharePoint :: Master Page Customize Reference</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#9383205</link><pubDate>Thu, 29 Jan 2009 18:10:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9383205</guid><dc:creator>I'm small, so share nothing...</dc:creator><description>&lt;p&gt;SharePoint :: Master Page Customize Reference&lt;/p&gt;
</description></item><item><title>The Content Query Web Part, and Working With Lookup Fields in a Custom Web Part</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#9441898</link><pubDate>Tue, 24 Feb 2009 02:13:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9441898</guid><dc:creator>Kirk Evans Blog</dc:creator><description>&lt;p&gt;I am helping work on a proof of concept for a customer, and one of the requirements is to display data&lt;/p&gt;
</description></item><item><title>Grouping pages on Date in SharePoint using XSL</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#9540994</link><pubDate>Thu, 09 Apr 2009 21:20:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9540994</guid><dc:creator>Baris Wanschers</dc:creator><description>&lt;p&gt;MOSS2007 comes with the Content Query Web Part to group and sort content as you need. This works like a charm in most situations, but sometimes I find most common things missing. Lately I was working on a news archive for a company who posts a lot of&lt;/p&gt;
</description></item><item><title>Democratization of IT: Creating WebParts for SharePoint Without IT Operations</title><link>http://blogs.msdn.com/ecm/archive/2006/10/25/configuring-and-customizing-the-content-query-web-part.aspx#9753422</link><pubDate>Mon, 15 Jun 2009 17:46:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9753422</guid><dc:creator>Kirk Evans Blog</dc:creator><description>&lt;p&gt;I've had several conversations with customers lately about creating some type of gadget gallery for their&lt;/p&gt;
</description></item></channel></rss>