<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Imtech Extended ContentQueryWebPart (with paging) source code available</title>
	<atom:link href="http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/</link>
	<description>Innovation Matters &#124; SharePoint Server MVP</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:43:19 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: chahine</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-24028</link>
		<dc:creator>chahine</dc:creator>
		<pubDate>Thu, 16 Jul 2009 08:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-24028</guid>
		<description>Hi,

Some person post the same problem like me, and Andrew Connell\&#039;s did not respond to them.

So I think there\&#039;s no solution for this moment.

Thank you for your help.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Some person post the same problem like me, and Andrew Connell\&#039;s did not respond to them.</p>
<p>So I think there\&#039;s no solution for this moment.</p>
<p>Thank you for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-23976</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Wed, 15 Jul 2009 16:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-23976</guid>
		<description>@chahine: Have you seen Andrew Connell&#039;s article on the subject (http://www.andrewconnell.com/blog/archive/2008/02/18/Subclassing-the-Content-Query-Web-Part-Adding-Dynamic-Filtering.aspx). The article contains step-by-step explanation and a code sample.</description>
		<content:encoded><![CDATA[<p>@chahine: Have you seen Andrew Connell&#039;s article on the subject (<a href="http://www.andrewconnell.com/blog/archive/2008/02/18/Subclassing-the-Content-Query-Web-Part-Adding-Dynamic-Filtering.aspx" rel="nofollow">http://www.andrewconnell.com/blog/archive/2008/02/18/Subclassing-the-Content-Query-Web-Part-Adding-Dynamic-Filtering.aspx</a>). The article contains step-by-step explanation and a code sample.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chahine</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-23872</link>
		<dc:creator>chahine</dc:creator>
		<pubDate>Tue, 14 Jul 2009 08:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-23872</guid>
		<description>I test it for the onLoad, Render, Prerender but always the same problem.</description>
		<content:encoded><![CDATA[<p>I test it for the onLoad, Render, Prerender but always the same problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-23808</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Mon, 13 Jul 2009 16:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-23808</guid>
		<description>@chahine: At what point are you applying that filter?</description>
		<content:encoded><![CDATA[<p>@chahine: At what point are you applying that filter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chahine</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-23778</link>
		<dc:creator>chahine</dc:creator>
		<pubDate>Mon, 13 Jul 2009 09:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-23778</guid>
		<description>hello,

this is my code:

{
 this.FilterField1 = &quot;Country&quot;;
 this.FilterType1 = &quot;string&quot;;
 this.FilterOperator1 = FilterFieldQueryOperator.Eq;
 if (myCondition)
    this.FilterValue1 = &quot;canada&quot;;
 else
    this.FilterValue1 = &quot;usa&quot;;
            this.Filter1ChainingOperator = FilterChainingOperator.Or;
}

Best regards.</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>this is my code:</p>
<p>{<br />
 this.FilterField1 = &#034;Country&#034;;<br />
 this.FilterType1 = &#034;string&#034;;<br />
 this.FilterOperator1 = FilterFieldQueryOperator.Eq;<br />
 if (myCondition)<br />
    this.FilterValue1 = &#034;canada&#034;;<br />
 else<br />
    this.FilterValue1 = &#034;usa&#034;;<br />
            this.Filter1ChainingOperator = FilterChainingOperator.Or;<br />
}</p>
<p>Best regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-23759</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Mon, 13 Jul 2009 05:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-23759</guid>
		<description>@chahine: how do you apply the filter? Could you post some code?</description>
		<content:encoded><![CDATA[<p>@chahine: how do you apply the filter? Could you post some code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chahine</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-23700</link>
		<dc:creator>chahine</dc:creator>
		<pubDate>Sun, 12 Jul 2009 11:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-23700</guid>
		<description>Hello,

I create a webpart that herite from the extended and I defined the filter programmatically and when I add my webpart in a page layout, I create a page from this page layout the filter is not applied, I must do modify the webpart and set ok because the filter is on.

So if you can help me,

Thanks</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I create a webpart that herite from the extended and I defined the filter programmatically and when I add my webpart in a page layout, I create a page from this page layout the filter is not applied, I must do modify the webpart and set ok because the filter is on.</p>
<p>So if you can help me,</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-22400</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Sat, 27 Jun 2009 21:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-22400</guid>
		<description>@ravi: you should use CSS to get the job done. The easiest way to do that is to use:

li { display: inline; }

Please note that it&#039;s only the beginning and there are still some styling left specific to your scenario to get the job done.</description>
		<content:encoded><![CDATA[<p>@ravi: you should use CSS to get the job done. The easiest way to do that is to use:</p>
<p>li { display: inline; }</p>
<p>Please note that it&#039;s only the beginning and there are still some styling left specific to your scenario to get the job done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravikumar.sanapala</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-22281</link>
		<dc:creator>ravikumar.sanapala</dc:creator>
		<pubDate>Fri, 26 Jun 2009 10:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-22281</guid>
		<description>hai Waldek Mastykarz 

i am ravi and am feel very happy after used ur Extended Content Query Web Part and Extended Content Query Web Part Pager. Both are working fine. But in  Extended Content Query Web Part Pager shows page numbers in Vertically with bullet feilds. how can i change that numbers in Horizontally. 

Plz help me

thanks and regaurds

Ravikumar.sanapala</description>
		<content:encoded><![CDATA[<p>hai Waldek Mastykarz </p>
<p>i am ravi and am feel very happy after used ur Extended Content Query Web Part and Extended Content Query Web Part Pager. Both are working fine. But in  Extended Content Query Web Part Pager shows page numbers in Vertically with bullet feilds. how can i change that numbers in Horizontally. </p>
<p>Plz help me</p>
<p>thanks and regaurds</p>
<p>Ravikumar.sanapala</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/imtech-extended-contentquerywebpart-with-paging-source-code-available/comment-page-1/#comment-17848</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Sun, 03 May 2009 21:12:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/07/14/imtech-extended-contentquerywebpart-source-code-available/#comment-17848</guid>
		<description>@debab ramzi: you can use CSS to get it displayed horizontally instead of vertically.</description>
		<content:encoded><![CDATA[<p>@debab ramzi: you can use CSS to get it displayed horizontally instead of vertically.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
