<?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, 17 May 2012 23:27:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL (with SPUtility.js) by Kit</title>
		<link>http://kitmenke.com/blog/2010/11/10/autopopulate-a-sharepoint-form-from-url-with-sputility-js/comment-page-1/#comment-1573</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Thu, 17 May 2012 23:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=297#comment-1573</guid>
		<description>Vijay,
Thanks and I&#039;m glad that SPUtility.js is working well for you. :)

You can reuse the GetValueFromURL function for multiple URL parameters. I&#039;ll try to keep my example here similar so you can see my changes:

[cc lang=&quot;javascript&quot;]Event.observe(window,&#039;load&#039;,function(){
    try {
      SPUtility.GetSPField(&#039;Project ID&#039;).SetValue(GetValueFromURL(&#039;projectID&#039;));
      SPUtility.GetSPField(&#039;Name&#039;).SetValue(GetValueFromURL(&#039;name&#039;));
    } catch (ex) {
      alert(ex.toString());
    }
});[/cc]

Or.. here is another example that is more similar to my old post but uses SPUtility.js and &lt;a href=&quot;http://sputility.codeplex.com/documentation&quot; rel=&quot;nofollow&quot;&gt;supports a lot more fields&lt;/a&gt;:

[cc lang=&quot;javascript&quot;]&lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/prototype.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/SPUtility.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function CustomExecuteFunction() {
    AutopopulateInputFromURL(&#039;Project ID&#039;,&#039;projectID&#039;);
    AutopopulateInputFromURL(&#039;Name&#039;,&#039;name&#039;);
}

function AutopopulateInputFromURL(title,queryParamName) {
    var field = SPUtility.GetSPField(title);
    if (null != field) {
        var queryParams = location.href.toQueryParams();
        if (queryParams != null &amp;&amp; queryParams[queryParamName] != null) {
            field.SetValue(queryParams[queryParamName]);
            // remove this next line if you don&#039;t want the fields to be readonly
            field.MakeReadOnly();
        }
    }
 }

_spBodyOnLoadFunctionNames.push(&quot;CustomExecuteFunction&quot;);
&lt;/script&gt;[/cc]

Hopefully one of those examples will get you started!
Thanks,
Kit</description>
		<content:encoded><![CDATA[<p>Vijay,<br />
Thanks and I&#8217;m glad that SPUtility.js is working well for you. <img src='http://kitmenke.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can reuse the GetValueFromURL function for multiple URL parameters. I&#8217;ll try to keep my example here similar so you can see my changes:</p>
<div class="codecolorer-container javascript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Event.<span style="color: #660066;">observe</span><span style="color: #009900;">&#40;</span>window<span style="color: #339933;">,</span><span style="color: #3366CC;">'load'</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; SPUtility.<span style="color: #660066;">GetSPField</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Project ID'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">SetValue</span><span style="color: #009900;">&#40;</span>GetValueFromURL<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'projectID'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; SPUtility.<span style="color: #660066;">GetSPField</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Name'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">SetValue</span><span style="color: #009900;">&#40;</span>GetValueFromURL<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span>ex<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>ex.<span style="color: #660066;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>Or.. here is another example that is more similar to my old post but uses SPUtility.js and <a href="http://sputility.codeplex.com/documentation" rel="nofollow">supports a lot more fields</a>:</p>
<div class="codecolorer-container javascript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/prototype.js&quot;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/SPUtility.js&quot;&gt;&lt;/script&gt;<br />
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span><br />
<span style="color: #003366; font-weight: bold;">function</span> CustomExecuteFunction<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; AutopopulateInputFromURL<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Project ID'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'projectID'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; AutopopulateInputFromURL<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Name'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #003366; font-weight: bold;">function</span> AutopopulateInputFromURL<span style="color: #009900;">&#40;</span>title<span style="color: #339933;">,</span>queryParamName<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> field <span style="color: #339933;">=</span> SPUtility.<span style="color: #660066;">GetSPField</span><span style="color: #009900;">&#40;</span>title<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">null</span> <span style="color: #339933;">!=</span> field<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> queryParams <span style="color: #339933;">=</span> location.<span style="color: #660066;">href</span>.<span style="color: #660066;">toQueryParams</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>queryParams <span style="color: #339933;">!=</span> <span style="color: #003366; font-weight: bold;">null</span> <span style="color: #339933;">&amp;&amp;</span> queryParams<span style="color: #009900;">&#91;</span>queryParamName<span style="color: #009900;">&#93;</span> <span style="color: #339933;">!=</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; field.<span style="color: #660066;">SetValue</span><span style="color: #009900;">&#40;</span>queryParams<span style="color: #009900;">&#91;</span>queryParamName<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #006600; font-style: italic;">// remove this next line if you don't want the fields to be readonly</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; field.<span style="color: #660066;">MakeReadOnly</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp;<span style="color: #009900;">&#125;</span><br />
<br />
_spBodyOnLoadFunctionNames.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;CustomExecuteFunction&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></div></div>
<p>Hopefully one of those examples will get you started!<br />
Thanks,<br />
Kit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL (with SPUtility.js) by vijay</title>
		<link>http://kitmenke.com/blog/2010/11/10/autopopulate-a-sharepoint-form-from-url-with-sputility-js/comment-page-1/#comment-1572</link>
		<dc:creator>vijay</dc:creator>
		<pubDate>Thu, 17 May 2012 23:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=297#comment-1572</guid>
		<description>The JavaScript library you have created is simply awesome and works perfectly.

However, your &lt;a href=&quot;../../../03/11/autopopulate-a-sharepoint-form-from-url/&quot; rel=&quot;nofollow&quot;&gt;march 2010 post&lt;/a&gt; had code where I could set multiple fields via the URL.

For example: &lt;a href=&quot;http://myurl.com/NewForm.aspx?projectID=523&amp;name=vijay&quot; rel=&quot;nofollow&quot;&gt;http://myurl.com/NewForm.aspx?projectID=523&amp;name=vijay&lt;/a&gt;

I could then easily set both fields by calling the same function twice.

[cc lang=&quot;javascript]function CustomExecuteFunction() {
    AutopopulateInputFromURL(&#039;Project ID&#039;,&#039;projectID&#039;);
    AutopopulateInputFromURL(&#039;Name&#039;,&#039;name&#039;);
}[/cc]

How can I reuse the GetValueFromURL function similarly?

P.S: I am pathetic when it comes to code; I can read and understand someones code but can&#039;t come up with my own.

Any help/suggestions are most welcome.</description>
		<content:encoded><![CDATA[<p>The JavaScript library you have created is simply awesome and works perfectly.</p>
<p>However, your <a href="../../../03/11/autopopulate-a-sharepoint-form-from-url/" rel="nofollow">march 2010 post</a> had code where I could set multiple fields via the URL.</p>
<p>For example: <a href="http://myurl.com/NewForm.aspx?projectID=523&amp;name=vijay" rel="nofollow">http://myurl.com/NewForm.aspx?projectID=523&#038;name=vijay</a></p>
<p>I could then easily set both fields by calling the same function twice.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">function CustomExecuteFunction() {<br />
    AutopopulateInputFromURL('Project ID','projectID');<br />
    AutopopulateInputFromURL('Name','name');<br />
}</div></div>
<p>How can I reuse the GetValueFromURL function similarly?</p>
<p>P.S: I am pathetic when it comes to code; I can read and understand someones code but can&#8217;t come up with my own.</p>
<p>Any help/suggestions are most welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL by Kit</title>
		<link>http://kitmenke.com/blog/2010/03/11/autopopulate-a-sharepoint-form-from-url/comment-page-1/#comment-1570</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Sat, 12 May 2012 03:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=237#comment-1570</guid>
		<description>Martin,
You will need to create a new link to the Upload.aspx page that passes your parameters. This means that you can&#039;t use the out of the box upload button. Keep in mind, that you&#039;ll need the default parameters that are passed to the page in addition to your custom one.. List, RootFolder, and Source.

The easiest way to get these, is just to click Upload like normal, copy the URL, and add your own URL parameter.
Thanks,
Kit</description>
		<content:encoded><![CDATA[<p>Martin,<br />
You will need to create a new link to the Upload.aspx page that passes your parameters. This means that you can&#8217;t use the out of the box upload button. Keep in mind, that you&#8217;ll need the default parameters that are passed to the page in addition to your custom one.. List, RootFolder, and Source.</p>
<p>The easiest way to get these, is just to click Upload like normal, copy the URL, and add your own URL parameter.<br />
Thanks,<br />
Kit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL by Martin</title>
		<link>http://kitmenke.com/blog/2010/03/11/autopopulate-a-sharepoint-form-from-url/comment-page-1/#comment-1569</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 11 May 2012 02:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=237#comment-1569</guid>
		<description>&quot;Just to share, when you want to do this  and prepopulate document library metadata, place the paramater in the upload.aspx not on the editform.aspx (page where the metadata are captured)&quot;

This is exactly what i&#039;m trying to accomplish (pass parameters for uploading a document to document library), but I can&#039;t edit the &quot;/_layout/upload.aspx&quot; as I&#039;m not an admin.  Any other way to do this?  I&#039;ve been working non-stop on this for a few days trying to do this OOTB.

I&#039;ve seen a write-up that recreated the multiple document upload in a CEWP, but it doesn&#039;t call the editform.aspx afterward to capture the parameters.....</description>
		<content:encoded><![CDATA[<p>&#8220;Just to share, when you want to do this  and prepopulate document library metadata, place the paramater in the upload.aspx not on the editform.aspx (page where the metadata are captured)&#8221;</p>
<p>This is exactly what i&#8217;m trying to accomplish (pass parameters for uploading a document to document library), but I can&#8217;t edit the &#8220;/_layout/upload.aspx&#8221; as I&#8217;m not an admin.  Any other way to do this?  I&#8217;ve been working non-stop on this for a few days trying to do this OOTB.</p>
<p>I&#8217;ve seen a write-up that recreated the multiple document upload in a CEWP, but it doesn&#8217;t call the editform.aspx afterward to capture the parameters&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wrap ListViewWebPart Column Headers by Brady</title>
		<link>http://kitmenke.com/blog/2010/07/08/wrap-listviewwebpart-colum-headers/comment-page-1/#comment-1566</link>
		<dc:creator>Brady</dc:creator>
		<pubDate>Wed, 25 Apr 2012 20:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=258#comment-1566</guid>
		<description>Hello,

I tried to implement this in SharePoint 2010 and my column heading did not wrap.  Any ideas?


Thanks  </description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I tried to implement this in SharePoint 2010 and my column heading did not wrap.  Any ideas?</p>
<p>Thanks  </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL by Kit</title>
		<link>http://kitmenke.com/blog/2010/03/11/autopopulate-a-sharepoint-form-from-url/comment-page-1/#comment-1558</link>
		<dc:creator>Kit</dc:creator>
		<pubDate>Tue, 17 Apr 2012 16:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=237#comment-1558</guid>
		<description>Chris,
Definitely! You&#039;ll need to change the code to parse location.href for your project&#039;s ID. Maybe use a regular expression or &lt;a href=&quot;https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/split&quot; title=&quot;split&quot; rel=&quot;nofollow&quot;&gt;split&lt;/a&gt;: location.href.split(&#039;/&#039;).
Thanks,
Kit</description>
		<content:encoded><![CDATA[<p>Chris,<br />
Definitely! You&#8217;ll need to change the code to parse location.href for your project&#8217;s ID. Maybe use a regular expression or <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/split" title="split" rel="nofollow">split</a>: location.href.split(&#8216;/&#8217;).<br />
Thanks,<br />
Kit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autopopulate a SharePoint Form from URL by Chris</title>
		<link>http://kitmenke.com/blog/2010/03/11/autopopulate-a-sharepoint-form-from-url/comment-page-1/#comment-1557</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 17 Apr 2012 14:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://kitmenke.com/blog/?p=237#comment-1557</guid>
		<description>I know I&#039;m a bit (or to be accurate very!) late on this post, but if my URLs have the format http://sharepoint.abc.def/projects/123/... is there any way of getting the 123 out of the URL given it&#039;s not referenced by an = sign as in your examples? The 123 is my project ID and I&#039;d like it to automatically appear in a form that writes to a central list of projects.
Thanks , Chris</description>
		<content:encoded><![CDATA[<p>I know I&#8217;m a bit (or to be accurate very!) late on this post, but if my URLs have the format <a href="http://sharepoint.abc.def/projects/123/" rel="nofollow">http://sharepoint.abc.def/projects/123/</a>&#8230; is there any way of getting the 123 out of the URL given it&#8217;s not referenced by an = sign as in your examples? The 123 is my project ID and I&#8217;d like it to automatically appear in a form that writes to a central list of projects.<br />
Thanks , Chris</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-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>
</channel>
</rss>

