<?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 Kit Menke&#039;s Blog</title>
	<atom:link href="http://kitmenke.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kitmenke.com/blog</link>
	<description>Experiences with SharePoint, web development, and programming</description>
	<lastBuildDate>Thu, 16 Feb 2012 18:06:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Editing in SharePoint&#8217;s SPGridView by Kit</title>
		<link>http://kitmenke.com/blog/2010/02/18/editing-in-sharepoints-spgridview/comment-page-1/#comment-1535</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Thu, 16 Feb 2012 18:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=198#comment-1535</guid>
		<description>Actually, I found another post which may be more helpful for you: http://suehernandez.wordpress.com/2009/07/07/moss-spgridview-with-checkbox-column/

Check out the cmdSubmit_Click function on that page. You can iterate over the rows in your grid to get the Checkbox control:
foreach (GridViewRow row in gridView.Rows)
{
   CheckBox cb = row.Cells[0].Controls[0] as CheckBox;
   // do something...
}

Remember, we separated our business logic out into the SimpleLogic class which is why the grid is not available there. This means, that you need to call SimpleLogic from your grid class. If you&#039;re trying to pass a value from the checkboxes, you&#039;ll need to get that data on a postback and then call SimpleLogic with those arguments.</description>
		<content:encoded><![CDATA[<p>Actually, I found another post which may be more helpful for you: <a href="http://suehernandez.wordpress.com/2009/07/07/moss-spgridview-with-checkbox-column/" rel="nofollow">http://suehernandez.wordpress.com/2009/07/07/moss-spgridview-with-checkbox-column/</a></p>
<p>Check out the cmdSubmit_Click function on that page. You can iterate over the rows in your grid to get the Checkbox control:<br />
foreach (GridViewRow row in gridView.Rows)<br />
{<br />
   CheckBox cb = row.Cells[0].Controls[0] as CheckBox;<br />
   // do something&#8230;<br />
}</p>
<p>Remember, we separated our business logic out into the SimpleLogic class which is why the grid is not available there. This means, that you need to call SimpleLogic from your grid class. If you&#8217;re trying to pass a value from the checkboxes, you&#8217;ll need to get that data on a postback and then call SimpleLogic with those arguments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing in SharePoint&#8217;s SPGridView by Richter</title>
		<link>http://kitmenke.com/blog/2010/02/18/editing-in-sharepoints-spgridview/comment-page-1/#comment-1534</link>
		<dc:creator>Richter</dc:creator>
		<pubDate>Thu, 16 Feb 2012 06:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=198#comment-1534</guid>
		<description>Thanks Kit, i created a checkbox field now following that link., how can i check if the checkbox is check? i cannot see _grid in the SimpleLogic class.</description>
		<content:encoded><![CDATA[<p>Thanks Kit, i created a checkbox field now following that link., how can i check if the checkbox is check? i cannot see _grid in the SimpleLogic class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing in SharePoint&#8217;s SPGridView by Kit</title>
		<link>http://kitmenke.com/blog/2010/02/18/editing-in-sharepoints-spgridview/comment-page-1/#comment-1533</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Wed, 15 Feb 2012 17:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=198#comment-1533</guid>
		<description>Richter,
As I mentioned earlier, take a look at TemplateField: http://www.reversealchemy.net/blog/2009/07/08/building-a-spgridview-control-intermezzo-templatefields-and-the-rowcommand-event/
Thanks,
Kit</description>
		<content:encoded><![CDATA[<p>Richter,<br />
As I mentioned earlier, take a look at TemplateField: <a href="http://www.reversealchemy.net/blog/2009/07/08/building-a-spgridview-control-intermezzo-templatefields-and-the-rowcommand-event/" rel="nofollow">http://www.reversealchemy.net/blog/2009/07/08/building-a-spgridview-control-intermezzo-templatefields-and-the-rowcommand-event/</a><br />
Thanks,<br />
Kit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing in SharePoint&#8217;s SPGridView by Richter</title>
		<link>http://kitmenke.com/blog/2010/02/18/editing-in-sharepoints-spgridview/comment-page-1/#comment-1532</link>
		<dc:creator>Richter</dc:creator>
		<pubDate>Tue, 14 Feb 2012 08:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=198#comment-1532</guid>
		<description>It works when i tried it. But how can i insert a checkbox field in the gridview?</description>
		<content:encoded><![CDATA[<p>It works when i tried it. But how can i insert a checkbox field in the gridview?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Customizing EditForm.aspx in a Publishing site by Miguel</title>
		<link>http://kitmenke.com/blog/2010/12/11/customizing-editform-aspx-in-a-publishing-site/comment-page-1/#comment-1529</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Sun, 29 Jan 2012 06:11:41 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=318#comment-1529</guid>
		<description>Awesome! Lifesaver post!!</description>
		<content:encoded><![CDATA[<p>Awesome! Lifesaver post!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing in SharePoint&#8217;s SPGridView by Kit</title>
		<link>http://kitmenke.com/blog/2010/02/18/editing-in-sharepoints-spgridview/comment-page-1/#comment-1528</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Wed, 25 Jan 2012 14:45:34 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=198#comment-1528</guid>
		<description>Vamshi,
You simply could redirect back to the same page and re-query the data from the list? This would refresh your grid. It is hard to tell what you&#039;re doing without code, so I would recommend asking a question on &lt;a href=&quot;http://sharepoint.stackexchange.com/&quot; title=&quot;http://sharepoint.stackexchange.com/&quot; rel=&quot;nofollow&quot;&gt;http://sharepoint.stackexchange.com/&lt;/a&gt;
Thanks,
Kit</description>
		<content:encoded><![CDATA[<p>Vamshi,<br />
You simply could redirect back to the same page and re-query the data from the list? This would refresh your grid. It is hard to tell what you&#8217;re doing without code, so I would recommend asking a question on <a href="http://sharepoint.stackexchange.com/" title="http://sharepoint.stackexchange.com/" rel="nofollow">http://sharepoint.stackexchange.com/</a><br />
Thanks,<br />
Kit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing in SharePoint&#8217;s SPGridView by vamshi</title>
		<link>http://kitmenke.com/blog/2010/02/18/editing-in-sharepoints-spgridview/comment-page-1/#comment-1525</link>
		<dc:creator>vamshi</dc:creator>
		<pubDate>Fri, 20 Jan 2012 11:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=198#comment-1525</guid>
		<description>hi friend am new to sharepoint 
i insert the data in to sharepoint list when i click on the submit how i to display the that inserted data  in gridview please help me </description>
		<content:encoded><![CDATA[<p>hi friend am new to sharepoint <br />
i insert the data in to sharepoint list when i click on the submit how i to display the that inserted data  in gridview please help me </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web services, XmlNode, and XPATH by Kit</title>
		<link>http://kitmenke.com/blog/2011/07/26/web-services-xpath/comment-page-1/#comment-1498</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Wed, 28 Dec 2011 15:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=382#comment-1498</guid>
		<description>&lt;p&gt;Javier,
I don&#039;t remember but I think I made myself Site Collection admin just in case.
Thanks,
Kit &lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Javier,<br />
I don&#8217;t remember but I think I made myself Site Collection admin just in case.<br />
Thanks,<br />
Kit </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web services, XmlNode, and XPATH by Javier Mendez</title>
		<link>http://kitmenke.com/blog/2011/07/26/web-services-xpath/comment-page-1/#comment-1442</link>
		<dc:creator>Javier Mendez</dc:creator>
		<pubDate>Mon, 19 Dec 2011 23:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=382#comment-1442</guid>
		<description>Hi Kit,

Can you tell what permissions did you granted to the user running GetPermissionCollection?

Thanks </description>
		<content:encoded><![CDATA[<p>Hi Kit,</p>
<p>Can you tell what permissions did you granted to the user running GetPermissionCollection?</p>
<p>Thanks </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL (with SPUtility.js) by Nathan</title>
		<link>http://kitmenke.com/blog/2010/11/10/autopopulate-a-sharepoint-form-from-url-with-sputility-js/comment-page-1/#comment-1271</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Fri, 25 Nov 2011 14:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=297#comment-1271</guid>
		<description>Absolutely fantastic! I&#039;ve been looking for a &#039;non-code&#039; way of doing this for ages.  Many thanks!!</description>
		<content:encoded><![CDATA[<p>Absolutely fantastic! I&#8217;ve been looking for a &#8216;non-code&#8217; way of doing this for ages.  Many thanks!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

