<?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 for Reverse Alchemy</title>
	<atom:link href="http://www.reversealchemy.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reversealchemy.net/blog</link>
	<description>Complexity through Simplicity</description>
	<lastBuildDate>Tue, 09 Mar 2010 13:38:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Building A SPGridView Control &#8211; Part 1: Introducing the SPGridView by Juha Kukko</title>
		<link>http://www.reversealchemy.net/blog/2009/05/01/building-a-spgridview-control-part-1-introducing-the-spgridview/comment-page-1/#comment-127</link>
		<dc:creator>Juha Kukko</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=134#comment-127</guid>
		<description>Hi,

Thanks for your usefull post! One note:
I found out that if I had grid.DataBind(); - method called inside the Render method the SelectData is called twice. When I moved grid.DataBind(); -call to OnPreRender method, I got rid of the second SelectData -call. 
If SelectData method takes some time (call to other datasource), it decreases performance to call it twice (in vain). (Only difference from your code is that I call GenerateColumns from CreateChildControls instead of Render)

Br,
Juha</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for your usefull post! One note:<br />
I found out that if I had grid.DataBind(); &#8211; method called inside the Render method the SelectData is called twice. When I moved grid.DataBind(); -call to OnPreRender method, I got rid of the second SelectData -call.<br />
If SelectData method takes some time (call to other datasource), it decreases performance to call it twice (in vain). (Only difference from your code is that I call GenerateColumns from CreateChildControls instead of Render)</p>
<p>Br,<br />
Juha</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Erik Burger</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-126</link>
		<dc:creator>Erik Burger</dc:creator>
		<pubDate>Sun, 28 Feb 2010 14:53:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-126</guid>
		<description>Hi Mark,

No problem whatsoever. I provided the code so I&#039;d like to see it work for you too ;) Would you be able to send me your code so I can have a look at it? I am sure the problem is something simple (as these problems tend to be) but without the code I can&#039;t think of anything to point you in the right direction. My e-mail address is eburger at reversealchemy dot nl.

If you can&#039;t send me the code (for commercial reasons, for example) please let me know and I will try and flesh out exactly which parts of the code are involved in the setting of the icon. That might help. But having the code would be better ;)

Erik</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>No problem whatsoever. I provided the code so I&#8217;d like to see it work for you too <img src='http://www.reversealchemy.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Would you be able to send me your code so I can have a look at it? I am sure the problem is something simple (as these problems tend to be) but without the code I can&#8217;t think of anything to point you in the right direction. My e-mail address is eburger at reversealchemy dot nl.</p>
<p>If you can&#8217;t send me the code (for commercial reasons, for example) please let me know and I will try and flesh out exactly which parts of the code are involved in the setting of the icon. That might help. But having the code would be better <img src='http://www.reversealchemy.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Erik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Erik Burger</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-125</link>
		<dc:creator>Erik Burger</dc:creator>
		<pubDate>Sun, 28 Feb 2010 14:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-125</guid>
		<description>Hi Mark,

No, I&#039;m afraid your issue is completely new to me. The workaround provided seems way to hackish to me though so I wouldn&#039;t bet my money on that being the solution. If you are using your own SPGridView control, maybe attaching the debugger might shed some light on the issue, or at least where it is occurring.
Also, you could try to add the user you are logging into SP with to the authorized users in your SQL database. If I had to hazard a guess, it somehow seems that the SP user&#039;s credentials are used to try and log in to SQL, but only after the connection to SQL is refreshed. Adding the SP user&#039;s credentials to your SQL database would then solve the issue. It&#039;s a VERY wild guess and it still sounds hackish to me but it&#039;s more manageable than the offered solution. I think.

Good luck,

Erik</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>No, I&#8217;m afraid your issue is completely new to me. The workaround provided seems way to hackish to me though so I wouldn&#8217;t bet my money on that being the solution. If you are using your own SPGridView control, maybe attaching the debugger might shed some light on the issue, or at least where it is occurring.<br />
Also, you could try to add the user you are logging into SP with to the authorized users in your SQL database. If I had to hazard a guess, it somehow seems that the SP user&#8217;s credentials are used to try and log in to SQL, but only after the connection to SQL is refreshed. Adding the SP user&#8217;s credentials to your SQL database would then solve the issue. It&#8217;s a VERY wild guess and it still sounds hackish to me but it&#8217;s more manageable than the offered solution. I think.</p>
<p>Good luck,</p>
<p>Erik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Mark Parter</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-124</link>
		<dc:creator>Mark Parter</dc:creator>
		<pubDate>Mon, 22 Feb 2010 23:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-124</guid>
		<description>Hi Erik,

Sorry to be a pest but I just can&#039;t seem to get more than one filter icon showing at a time. I&#039;ve recopied your proxy code above and checked the code in your grid_RowDataBound event of the ASPGridView class and it looks the same as what I&#039;ve currently got.</description>
		<content:encoded><![CDATA[<p>Hi Erik,</p>
<p>Sorry to be a pest but I just can&#8217;t seem to get more than one filter icon showing at a time. I&#8217;ve recopied your proxy code above and checked the code in your grid_RowDataBound event of the ASPGridView class and it looks the same as what I&#8217;ve currently got.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Mark Parter</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-123</link>
		<dc:creator>Mark Parter</dc:creator>
		<pubDate>Mon, 22 Feb 2010 23:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-123</guid>
		<description>Thanks for updating your post. At the risk of being cheecky, have you ever encountered this issue I&#039;m experiencing?

http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/a1a64a0d-4f4e-4168-8b7e-19926cc2a056</description>
		<content:encoded><![CDATA[<p>Thanks for updating your post. At the risk of being cheecky, have you ever encountered this issue I&#8217;m experiencing?</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/a1a64a0d-4f4e-4168-8b7e-19926cc2a056" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/a1a64a0d-4f4e-4168-8b7e-19926cc2a056</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Erik Burger</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-122</link>
		<dc:creator>Erik Burger</dc:creator>
		<pubDate>Mon, 22 Feb 2010 21:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-122</guid>
		<description>Hi Mark,

What I meant was that the possible filter values in the &quot;Total Sales H&quot; column are not filtered to represent the already active filters on the other two columns. What I would want to happen is that the possible filter values only contain those values that match both &quot;J. Smith&quot; and &quot;Asia&quot; (as in &quot;SELECT FROM [Total Sales H] WHERE [NameH] = &#039;J.Smith&quot; AND [RegionH] = &#039;Asia&#039;).

As for the icons not showing correctly, I actually forgot to include the necessary changes to the &lt;em&gt;grid_RowDataBound&lt;/em&gt; method of the &lt;strong&gt;ASPGridView&lt;/strong&gt; class in my post. My apologies. I&#039;ve updated the post.

Thanks for pointing this out.

Erik</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>What I meant was that the possible filter values in the &#8220;Total Sales H&#8221; column are not filtered to represent the already active filters on the other two columns. What I would want to happen is that the possible filter values only contain those values that match both &#8220;J. Smith&#8221; and &#8220;Asia&#8221; (as in &#8220;SELECT FROM [Total Sales H] WHERE [NameH] = &#8216;J.Smith&#8221; AND [RegionH] = &#8216;Asia&#8217;).</p>
<p>As for the icons not showing correctly, I actually forgot to include the necessary changes to the <em>grid_RowDataBound</em> method of the <strong>ASPGridView</strong> class in my post. My apologies. I&#8217;ve updated the post.</p>
<p>Thanks for pointing this out.</p>
<p>Erik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Mark Parter</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-121</link>
		<dc:creator>Mark Parter</dc:creator>
		<pubDate>Mon, 22 Feb 2010 16:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-121</guid>
		<description>Hi Erik,

I was refering to the fact that the icon (for me anyway), only shows for the last column that was filtered, although the filter is still being applied to both columns.

I had a look at your screenshot but vcan&#039;t see what the issue is. Is it the fact that you&#039;ve filtered and the item isn&#039;t highlighted in the list of filter values?

This part works for me although again, it&#039;s only being applied to the last filtered column. So the filter appears to be applied, it&#039;s just the UI aspects which are awry.

Thanks,

Mark</description>
		<content:encoded><![CDATA[<p>Hi Erik,</p>
<p>I was refering to the fact that the icon (for me anyway), only shows for the last column that was filtered, although the filter is still being applied to both columns.</p>
<p>I had a look at your screenshot but vcan&#8217;t see what the issue is. Is it the fact that you&#8217;ve filtered and the item isn&#8217;t highlighted in the list of filter values?</p>
<p>This part works for me although again, it&#8217;s only being applied to the last filtered column. So the filter appears to be applied, it&#8217;s just the UI aspects which are awry.</p>
<p>Thanks,</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making NHibernate Burrow work with NHibernate 2.1 by Kyle Koss</title>
		<link>http://www.reversealchemy.net/blog/2009/08/28/making-nhibernate-burrow-work-with-nhibernate-2-1/comment-page-1/#comment-120</link>
		<dc:creator>Kyle Koss</dc:creator>
		<pubDate>Thu, 11 Feb 2010 19:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=238#comment-120</guid>
		<description>Just thought I&#039;d mention the problem I had when building Burrow against NHibernate 2.1. It seems that if you have Burrow configured to use more than one database it doesn&#039;t work. I kept getting the &#039;NHibernate.MappingException: No persister for: &#039; error, and I couldn&#039;t figure out what I had done wrong. So, I downloaded NHibernate 2.0, and set it up with that, and it worked fine.</description>
		<content:encoded><![CDATA[<p>Just thought I&#8217;d mention the problem I had when building Burrow against NHibernate 2.1. It seems that if you have Burrow configured to use more than one database it doesn&#8217;t work. I kept getting the &#8216;NHibernate.MappingException: No persister for: &#8216; error, and I couldn&#8217;t figure out what I had done wrong. So, I downloaded NHibernate 2.0, and set it up with that, and it worked fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Erik Burger</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-118</link>
		<dc:creator>Erik Burger</dc:creator>
		<pubDate>Tue, 09 Feb 2010 21:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-118</guid>
		<description>Hi Mark,

I am glad you liked it (and that it worked ;-) ). I am going to address a problem with the UI showing the wrong information, but I am wondering if we are talking about the same thing. Are you talking about the icon not appearing on the columns that are filtered or the filter menu not  showing the correct data? If the first, that should actually work so we might have to look into that a little more. If the second, that&#039;s the one I&#039;ll be talking about. To illustrate, you can find a screenshot of the ASPGridView in action &lt;a href=&quot;http://www.reversealchemy.net/blog/wp-content/uploads/2010/02/aspgridview_filtering.png&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.

Regards,

Erik</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>I am glad you liked it (and that it worked <img src='http://www.reversealchemy.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ). I am going to address a problem with the UI showing the wrong information, but I am wondering if we are talking about the same thing. Are you talking about the icon not appearing on the columns that are filtered or the filter menu not  showing the correct data? If the first, that should actually work so we might have to look into that a little more. If the second, that&#8217;s the one I&#8217;ll be talking about. To illustrate, you can find a screenshot of the ASPGridView in action <a href="http://www.reversealchemy.net/blog/wp-content/uploads/2010/02/aspgridview_filtering.png" target="_blank" rel="nofollow">here</a>.</p>
<p>Regards,</p>
<p>Erik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building A SPGridView Control – Part 4: Filtering Multiple Columns by Mark Parter</title>
		<link>http://www.reversealchemy.net/blog/2010/02/01/building-a-spgridview-control-%e2%80%93-part-4-filtering-multiple-columns/comment-page-1/#comment-117</link>
		<dc:creator>Mark Parter</dc:creator>
		<pubDate>Tue, 09 Feb 2010 21:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.reversealchemy.net/?p=308#comment-117</guid>
		<description>Works a treat, thanks. Looking forward to the next installment which I presume is to fix the fact that the UI only presents to the user that one filter has been applied, when in reality it&#039;s allowing multiple.</description>
		<content:encoded><![CDATA[<p>Works a treat, thanks. Looking forward to the next installment which I presume is to fix the fact that the UI only presents to the user that one filter has been applied, when in reality it&#8217;s allowing multiple.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
