<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SharePoint Fun &#187; Telerik</title>
	<atom:link href="http://blog.qumsieh.ca/tag/telerik/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.qumsieh.ca</link>
	<description>Developer's blog related to ASP.NET, SharePoint and Telerik Web Controls</description>
	<lastBuildDate>Wed, 01 Sep 2010 17:47:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Add a ToolTip to the Telerik Ajax RadEditor</title>
		<link>http://blog.qumsieh.ca/2009/08/12/how-to-add-a-tooltip-to-the-telerik-ajax-radeditor/</link>
		<comments>http://blog.qumsieh.ca/2009/08/12/how-to-add-a-tooltip-to-the-telerik-ajax-radeditor/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 22:09:05 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=463</guid>
		<description><![CDATA[Ok this one was not immediately obvious to me so I&#8217;m posting the solution here. I&#8217;m using a Telerik Ajax RadEditor on my page as follows: &#60;telerik:RadEditor ID=&#34;rhfNotes&#34; EditModes=&#34;Preview&#34; runat=&#34;server&#34; ToolsFile=&#34;ToolsFile.xml&#34;&#62; &#60;/telerik:RadEditor&#62; Now, after doing a bit of inspection, I discovered there was a property I could set on the RadEditor called ToolTip that seemed [...]]]></description>
			<content:encoded><![CDATA[<p>Ok this one was not immediately obvious to me so I&#8217;m posting the solution here. I&#8217;m using a Telerik Ajax RadEditor on my page as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>telerik<span style="color: #008000;">:</span>RadEditor ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rhfNotes&quot;</span> EditModes<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Preview&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> ToolsFile<span style="color: #008000;">=</span><span style="color: #666666;">&quot;ToolsFile.xml&quot;</span><span style="color: #008000;">&gt;</span>
<span style="color: #008000;">&lt;/</span>telerik<span style="color: #008000;">:</span>RadEditor<span style="color: #008000;">&gt;</span></pre></div></div>

<p>Now, after doing a bit of inspection, I discovered there was a property I could set on the RadEditor called <strong>ToolTip</strong> that seemed to just require a string value as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>telerik<span style="color: #008000;">:</span>RadEditor ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rhfNotes&quot;</span> EditModes<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Preview&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> ToolTip<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Some message to the user&quot;</span> ToolsFile<span style="color: #008000;">=</span><span style="color: #666666;">&quot;ToolsFile.xml&quot;</span><span style="color: #008000;">&gt;</span>
<span style="color: #008000;">&lt;/</span>telerik<span style="color: #008000;">:</span>RadEditor<span style="color: #008000;">&gt;</span></pre></div></div>

<p>I assumed this would produce exactly what I needed. Unfortunately, after testing the above out, I got nothing, no tool tip. Doing a search on the forums turned up nothing useful, not even an explanation as to what the <strong>ToolTip</strong> property was really for. However, I did come across an entirely separate control in the <strong>Ajax</strong> suite of controls called <strong>RadToolTip</strong>.</p>
<p>That&#8217;s clever I thought, perhaps I&#8217;ll just give that a go. I was hoping there would be some sort of property I would set that would allow me to specify what control to tie this tool tip to. Guess what! There is! My final solution was as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>telerik<span style="color: #008000;">:</span>RadToolTip ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rttNotes&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> TargetControlID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rhfNotes&quot;</span> Text<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Some message to user&quot;</span><span style="color: #008000;">&gt;&lt;/</span>telerik<span style="color: #008000;">:</span>RadToolTip<span style="color: #008000;">&gt;</span>
<span style="color: #008000;">&lt;</span>telerik<span style="color: #008000;">:</span>RadEditor ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rhfNotes&quot;</span> EditModes<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Preview&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> ToolsFile<span style="color: #008000;">=</span><span style="color: #666666;">&quot;ToolsFile.xml&quot;</span><span style="color: #008000;">&gt;</span>
<span style="color: #008000;">&lt;/</span>telerik<span style="color: #008000;">:</span>RadEditor<span style="color: #008000;">&gt;</span></pre></div></div>

<p>There you have it. I haven&#8217;t played around with all the properties and options I have available to me with the <strong>RadToolTip</strong>, but I&#8217;m sure there are some useful ones in there!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2009/08/12/how-to-add-a-tooltip-to-the-telerik-ajax-radeditor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Find the Server Control ID of a RadGrid</title>
		<link>http://blog.qumsieh.ca/2009/01/16/how-to-find-the-server-control-id-of-a-radgrid/</link>
		<comments>http://blog.qumsieh.ca/2009/01/16/how-to-find-the-server-control-id-of-a-radgrid/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 06:29:23 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=279</guid>
		<description><![CDATA[Let&#8217;s say you have 2 RadGrids defined in your aspx page. Both grids happen to share the same ItemDataBound event, but you&#8217;d like to apply a small tweak depending on what grid is calling the ItemDataBound method. In order to implement your tweak, you&#8217;ll need a way to find the ID of the grid that [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you have 2 RadGrids defined in your aspx page. Both grids happen to share the same <strong>ItemDataBound</strong> event, but you&#8217;d like to apply a small tweak depending on what grid is calling the <strong>ItemDataBound</strong> method.</p>
<p>In order to implement your tweak, you&#8217;ll need a way to find the ID of the grid that made the call. And not the ASP.NET generated ID, since that can be rather ugly, but the ID of the control you created in the aspx page. The following example demonstrates how this can be achieved:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>radG<span style="color: #008000;">:</span>RadGrid ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rgThisYearsItems&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> OnItemDataBound<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rgItems_ItemDataBound&quot;</span><span style="color: #008000;">&gt;&lt;/</span>radG<span style="color: #008000;">:</span>RadGrid<span style="color: #008000;">&gt;</span>
&nbsp;
<span style="color: #008000;">&lt;</span>radG<span style="color: #008000;">:</span>RadGrid ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rgLastYearsItems&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> OnItemDataBound<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rgItems_ItemDataBound&quot;</span><span style="color: #008000;">&gt;&lt;/</span>radG<span style="color: #008000;">:</span>RadGrid<span style="color: #008000;">&gt;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">protected</span> <span style="color: #0600FF;">void</span> rgItems_ItemDataBound<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, GridItemEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
        <span style="color: #008080; font-style: italic;">// we need to determine what grid is calling the itemdatabound event</span>
        RadGrid grid <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>RadGrid<span style="color: #000000;">&#41;</span>e.<span style="color: #0000FF;">Item</span>.<span style="color: #0000FF;">OwnerTableView</span>.<span style="color: #0000FF;">OwnerGrid</span><span style="color: #008000;">;</span>
&nbsp;
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>grid.<span style="color: #0000FF;">ID</span> <span style="color: #008000;">==</span> <span style="color: #666666;">&quot;rgThisYearsItems&quot;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #008080; font-style: italic;">// perform some logic here</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>grid.<span style="color: #0000FF;">ID</span> <span style="color: #008000;">==</span> <span style="color: #666666;">&quot;rgLastYearsItems&quot;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #008080; font-style: italic;">// perform some logic here</span>
        <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>The reason you might want to implement the above is for code reuse. If you&#8217;ve got two grids and the <strong>ItemDataBound</strong> event for both will be really similar minus a line or two, you can have them both call the same <strong>ItemDataBound</strong> event and use the above logic to determine when to run the custom pieces.</p>
<p>Thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2009/01/16/how-to-find-the-server-control-id-of-a-radgrid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a Header Row to Telerik RadGrid Programmatically</title>
		<link>http://blog.qumsieh.ca/2009/01/15/adding-a-header-row-to-telerik-radgrid-programmatically/</link>
		<comments>http://blog.qumsieh.ca/2009/01/15/adding-a-header-row-to-telerik-radgrid-programmatically/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 00:26:34 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=270</guid>
		<description><![CDATA[So here&#8217;s the idea. I&#8217;ve got a RadGrid on my page that is populated programmatically. I build a DataTable from various different sources and once I&#8217;m satisifed with how my DataTable looks, I set the grid&#8217;s DataSource property and bind. That&#8217;s all good, except now I want to insert a header row in the middle [...]]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s the idea. I&#8217;ve got a <strong>RadGrid</strong> on my page that is populated programmatically. I build a <strong>DataTable</strong> from various different sources and once I&#8217;m satisifed with how my <strong>DataTable</strong> looks, I set the grid&#8217;s <strong>DataSource</strong> property and bind.</p>
<p>That&#8217;s all good, except now I want to insert a header row in the middle of my grid. The idea behind this row is to simply provide a clear segregation between my different sources of data. It&#8217;s all one grid remember, but I wanted a way to distinguish between the data.</p>
<p>I came up with the idea to simply add a header row at the point I needed, set the <strong>ColumnSpan</strong> to match the number of columns I have in my grid, set the <strong>HorizontalSpan</strong> to center the text and finally set the Visibility on all other columns to false.</p>
<p>Here is what I ended up with. The grid is setup with 5 columns: Name, Address, City, Province and Country. At the point where I&#8217;d like my see my header row in the grid, I set the Name column to the text I&#8217;d like the header to contain. Keep in mind that I have rows being added before and after the code sample below. I&#8217;ve inserted the code exactly where I want my header to appear:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">DataRow row <span style="color: #008000;">=</span> dt.<span style="color: #0000FF;">NewRow</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
row<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Name&quot;</span><span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;My heading that I'd like to show&quot;</span><span style="color: #008000;">;</span>
dt.<span style="color: #0000FF;">Rows</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>row<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p>Now in the ItemDataBound event, I can modify this particular row that I just created so that it spans all the columns and is centered as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">protected</span> <span style="color: #0600FF;">void</span> RadGrid1_ItemDataBound<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, GridItemEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>e.<span style="color: #0000FF;">Item</span> <span style="color: #008000;">is</span> GridDataItem<span style="color: #000000;">&#41;</span> 
    <span style="color: #000000;">&#123;</span>
        GridDataItem dataItem <span style="color: #008000;">=</span> e.<span style="color: #0000FF;">Item</span> <span style="color: #0600FF;">as</span> GridDataItem<span style="color: #008000;">;</span>
&nbsp;
        <span style="color: #008080; font-style: italic;">// i use the second index to get at the name column. the first two indexes</span>
        <span style="color: #008080; font-style: italic;">// are empty for me and don't contain any valuable data</span>
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>dataItem.<span style="color: #0000FF;">Cells</span><span style="color: #000000;">&#91;</span><span style="color: #FF0000;">2</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Text</span> <span style="color: #008000;">==</span> <span style="color: #666666;">&quot;My heading that I'd like to show&quot;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Name&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ColumnSpan</span> <span style="color: #008000;">=</span> <span style="color: #FF0000;">8</span><span style="color: #008000;">;</span>
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Name&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">HorizontalAlign</span> <span style="color: #008000;">=</span> HorizontalAlign.<span style="color: #0000FF;">Center</span><span style="color: #008000;">;</span>
&nbsp;
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Name&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">BackColor</span> <span style="color: #008000;">=</span> <span style="color: #000000;">System.<span style="color: #0000FF;">Drawing</span></span>.<span style="color: #0000FF;">Color</span>.<span style="color: #0000FF;">Black</span><span style="color: #008000;">;</span>
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Name&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ForeColor</span> <span style="color: #008000;">=</span> <span style="color: #000000;">System.<span style="color: #0000FF;">Drawing</span></span>.<span style="color: #0000FF;">Color</span>.<span style="color: #0000FF;">White</span><span style="color: #008000;">;</span>
&nbsp;
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Address&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Visible</span> <span style="color: #008000;">=</span> false<span style="color: #008000;">;</span>
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;City&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Visible</span> <span style="color: #008000;">=</span> false<span style="color: #008000;">;</span>
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Province&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Visible</span> <span style="color: #008000;">=</span> false<span style="color: #008000;">;</span>
            dataItem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;Country&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Visible</span> <span style="color: #008000;">=</span> false<span style="color: #008000;">;</span>
       <span style="color: #000000;">&#125;</span>
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>That&#8217;s what I came up with and it seems to work great. If anyone has a better technique for implementing this, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2009/01/15/adding-a-header-row-to-telerik-radgrid-programmatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telerik RadGrid &#8211; Accessing Controls In Edit Mode</title>
		<link>http://blog.qumsieh.ca/2009/01/06/telerik-radgrid-accessing-controls-in-edit-mode/</link>
		<comments>http://blog.qumsieh.ca/2009/01/06/telerik-radgrid-accessing-controls-in-edit-mode/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 18:14:16 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=210</guid>
		<description><![CDATA[In this post, I&#8217;m going to talk a little bit about how to access specific controls within a RadGrid while that grid is in edit mode. There are several reasons you may want to do this: You might need to set some defaults for the control. You want to perform some calculation and output some [...]]]></description>
			<content:encoded><![CDATA[<p>In this post, I&#8217;m going to talk a little bit about how to access specific controls within a RadGrid while that grid is in edit mode. There are several reasons you may want to do this:</p>
<ul>
<li>You might need to set some defaults for the control.</li>
<li>You want to perform some calculation and output some default value to the control.</li>
<li>You may need to change the attributes of a control (color, font etc).</li>
</ul>
<p>In order to achieve any of the above, we need a way to get access to the controls while in edit mode.</p>
<p>To begin, you&#8217;ll need to add the <strong>ItemDataBound</strong> event to your grid, so that when we&#8217;re in edit mode and the items are being bound, we can perform our custom code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">OnItemDataBound<span style="color: #008000;">=</span><span style="color: #666666;">&quot;RadGrid1_ItemDataBound&quot;</span></pre></td></tr></table></div>

<p>Next, add the method to handle the <strong>ItemDataBound</strong> event for the grid as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">protected</span> <span style="color: #0600FF;">void</span> RadGrid1_ItemDataBound<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, GridItemEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>e.<span style="color: #0000FF;">Item</span> <span style="color: #008000;">is</span> GridEditableItem<span style="color: #000000;">&#41;</span> <span style="color: #008000;">&amp;</span>amp<span style="color: #008000;">;&amp;</span>amp<span style="color: #008000;">;</span> <span style="color: #000000;">&#40;</span>e.<span style="color: #0000FF;">Item</span>.<span style="color: #0000FF;">IsInEditMode</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        GridEditableItem edititem <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>GridEditableItem<span style="color: #000000;">&#41;</span>e.<span style="color: #0000FF;">Item</span><span style="color: #008000;">;</span>
        TextBox txtbx <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>TextBox<span style="color: #000000;">&#41;</span>edititem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;ColumnUniqueName&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Controls</span><span style="color: #000000;">&#91;</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
        txtbx.<span style="color: #0000FF;">Text</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;&quot;</span><span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>The above code is pretty straight forward. We check first to see if we&#8217;re in edit mode, because we don&#8217;t want to be performing this code during any other time. We create a <strong>GridEditableItem</strong> object so that we can talk to the controls of the item we&#8217;re currently editing. And finally, if it&#8217;s a textbox we&#8217;re dealing with, create a <strong>TextBox</strong> object and using the unique name you&#8217;ve assigned that column, we can access the control within it.</p>
<p>Now that you have a TextBox object, you can access all the properties and methods of that object as you normally would.</p>
<p>If the control in question is a checkbox, it&#8217;s not much different:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">CheckBox cb <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>CheckBox<span style="color: #000000;">&#41;</span>edititem<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;ColumnUniqueName&quot;</span><span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">Controls</span><span style="color: #000000;">&#91;</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>cb.<span style="color: #008000;">Checked</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
    <span style="color: #008080; font-style: italic;">// perform some custom code</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2009/01/06/telerik-radgrid-accessing-controls-in-edit-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Filter a RadGrid When the Enter Key is Pressed</title>
		<link>http://blog.qumsieh.ca/2008/08/19/how-to-filter-a-radgrid-when-the-enter-key-is-pressed/</link>
		<comments>http://blog.qumsieh.ca/2008/08/19/how-to-filter-a-radgrid-when-the-enter-key-is-pressed/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 01:33:52 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=106</guid>
		<description><![CDATA[The solution for this was not totally obvious to me when reading the RadGrid documentation, so I did a bit of forum searching and found the solution below: Let&#8217;s say you&#8217;ve got a RadGrid on your page, and you&#8217;ve configured it already to allow for filtering by setting the AllowFilteringByColumn property to true as follows: [...]]]></description>
			<content:encoded><![CDATA[<p>The solution for this was not totally obvious to me when reading the RadGrid documentation, so I did a bit of forum searching and found the solution below:</p>
<p>Let&#8217;s say you&#8217;ve got a RadGrid on your page, and you&#8217;ve configured it already to allow for filtering by setting the AllowFilteringByColumn property to true as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"> <span style="color: #008000;">&lt;</span>radG<span style="color: #008000;">:</span>RadGrid ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rgDistricts&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> PageSize<span style="color: #008000;">=</span><span style="color: #666666;">&quot;5&quot;</span> Skin<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Default&quot;</span> AllowFilteringByColumn<span style="color: #008000;">=</span><span style="color: #666666;">&quot;true&quot;</span> AllowPaging<span style="color: #008000;">=</span><span style="color: #666666;">&quot;True&quot;</span> AllowSorting<span style="color: #008000;">=</span><span style="color: #666666;">&quot;True&quot;</span> GridLines<span style="color: #008000;">=</span><span style="color: #666666;">&quot;None&quot;</span> AutoGenerateColumns<span style="color: #008000;">=</span><span style="color: #666666;">&quot;False&quot;</span> OnDeleteCommand<span style="color: #008000;">=</span><span style="color: #666666;">&quot;DistrictDelete&quot;</span> OnItemCommand<span style="color: #008000;">=</span><span style="color: #666666;">&quot;ItemClick&quot;</span> OnNeedDataSource<span style="color: #008000;">=</span><span style="color: #666666;">&quot;District_NeedDataSource&quot;</span><span style="color: #008000;">&gt;</span></pre></td></tr></table></div>

<p>The code above will insert filter boxes and a filter menu into your grid which will allow users to enter a value and select a filter funtion to filter the grid. This works good except it requires that a user enter a value and then use the mouse to select how they want to filter on that value before the grid is affected.</p>
<p>It would be faster and a better user experience to allow users to enter a value and then hit the enter key and then have the grid filter. So to achieve this, you have to tell each of your bound columns that a. you want to auto post back on filter and b. what default filter funtion to use as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>radG<span style="color: #008000;">:</span>GridBoundColumn DataField<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Address&quot;</span> SortExpression<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Address&quot;</span> HeaderText<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Address&quot;</span> UniqueName<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Address&quot;</span> AutoPostBackOnFilter<span style="color: #008000;">=</span><span style="color: #666666;">&quot;true&quot;</span> CurrentFilterFunction<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Contains&quot;</span><span style="color: #008000;">&gt;</span> <span style="color: #008000;">&lt;/</span>radG<span style="color: #008000;">:</span>GridBoundColumn<span style="color: #008000;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2008/08/19/how-to-filter-a-radgrid-when-the-enter-key-is-pressed/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Create a HyperLink Column Within a TreeView Control</title>
		<link>http://blog.qumsieh.ca/2008/07/21/how-to-create-a-hyperlinkcolumn-within-a-telerik-treeview-control/</link>
		<comments>http://blog.qumsieh.ca/2008/07/21/how-to-create-a-hyperlinkcolumn-within-a-telerik-treeview-control/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 01:45:39 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=125</guid>
		<description><![CDATA[Let&#8217;s say you have an employee table and you want to be able to create a hyperlink on the employee name column with a custom url in the form of: &#8220;employee.aspx?ID=&#8221; Within an asp.net datagrid, you could achieve this by creating a hyperlinkcolumn and specifying the DataNavigateUrlField and the DataNavigateUrlFormatString as follows: 1 &#60;asp:HyperLinkColumn DataNavigateUrlField=&#34;EmployeeID&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you have an employee table and you want to be able to create a hyperlink on the employee name column with a custom url in the form of: &#8220;employee.aspx?ID=&#8221;</p>
<p>Within an asp.net datagrid, you could achieve this by creating a hyperlinkcolumn and specifying the <strong>DataNavigateUrlField</strong> and the <strong>DataNavigateUrlFormatString</strong> as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>asp<span style="color: #008000;">:</span>HyperLinkColumn DataNavigateUrlField<span style="color: #008000;">=</span><span style="color: #666666;">&quot;EmployeeID&quot;</span> DataNavigateUrlFormatString<span style="color: #008000;">=</span><span style="color: #666666;">&quot;employee.aspx?ID={0}&quot;</span> DataTextField<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Name&quot;</span><span style="color: #008000;">&gt;&lt;/</span>asp<span style="color: #008000;">:</span>HyperLinkColumn<span style="color: #008000;">&gt;</span></pre></td></tr></table></div>

<p>If you&#8217;re using a Telerik TreeView control, however, the syntax is slightly different. While you can specify DataBindings within a Telerik TreeView control, there doesn&#8217;t seem to be a <strong>NavigateUrlFormatString</strong> property available. You can set the <strong>NavigateUrl</strong> and the <strong>NavigateUrlField</strong> property, but that&#8217;s not enough to get the same results as above.</p>
<p>The best way to accomplish this is:</p>
<p>Within the RadTreeView control, add an <strong>OnNodeBound</strong> event as follows. This will enable us to set our <strong>NavigateUrl</strong> at the same time our nodes are being bound to the treeview thus giving us more control:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;</span>radT<span style="color: #008000;">:</span>RadTreeView ID<span style="color: #008000;">=</span><span style="color: #666666;">&quot;rtvEmployees&quot;</span> Skin<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Default&quot;</span> runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span> OnNodeBound<span style="color: #008000;">=</span><span style="color: #666666;">&quot;Node_Bound&quot;</span><span style="color: #008000;">&gt;&lt;/</span>radT<span style="color: #008000;">:</span>RadTreeView<span style="color: #008000;">&gt;</span></pre></td></tr></table></div>

<p>Within your code behind file, create a function as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">protected</span> <span style="color: #0600FF;">void</span> Node_Bound<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, Telerik.<span style="color: #0000FF;">WebControls</span>.<span style="color: #0000FF;">RadTreeNodeEventArgs</span> e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    e.<span style="color: #0000FF;">NodeBound</span>.<span style="color: #0000FF;">NavigateUrl</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;employee.aspx?ID=&quot;</span> <span style="color: #008000;">+</span> e.<span style="color: #0000FF;">NodeBound</span>.<span style="color: #0000FF;">Value</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>Don&#8217;t forget that whether you build the structure programmatically or inline, you&#8217;ll need to specify the <strong>DataFieldID</strong>, the <strong>DataFieldParentID</strong>, the <strong>DataTextField</strong> and the <strong>DataValueField</strong>. In my case, I did it programmatically as follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">rtvUserGroups.<span style="color: #0000FF;">DataSource</span> <span style="color: #008000;">=</span> dsTreeView<span style="color: #008000;">;</span>
&nbsp;
rtvUserGroups.<span style="color: #0000FF;">DataFieldID</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;EmployeeID&quot;</span><span style="color: #008000;">;</span>
&nbsp;
rtvUserGroups.<span style="color: #0000FF;">DataFieldParentID</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;ParentID&quot;</span><span style="color: #008000;">;</span>
&nbsp;
rtvUserGroups.<span style="color: #0000FF;">DataValueField</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;EmployeeID&quot;</span><span style="color: #008000;">;</span>
&nbsp;
rtvUserGroups.<span style="color: #0000FF;">DataTextField</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Name&quot;</span><span style="color: #008000;">;</span>
&nbsp;
rtvUserGroups.<span style="color: #0000FF;">DataBind</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2008/07/21/how-to-create-a-hyperlinkcolumn-within-a-telerik-treeview-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Telerik Ajax to SharePoint</title>
		<link>http://blog.qumsieh.ca/2008/07/02/how-to-add-telerik-ajax-to-sharepoint/</link>
		<comments>http://blog.qumsieh.ca/2008/07/02/how-to-add-telerik-ajax-to-sharepoint/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 01:56:03 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[Telerik]]></category>
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=145</guid>
		<description><![CDATA[The steps below outline how to get started using Telerik Ajax within a SharePoint custom application page. If you&#8217;re developing a web part or even just a custom asp.net application, the concepts are still the same. Add the RadAjax.Net2.dll file into the GAC. If you need to find the RadAjax.Net2.dll file, if you&#8217;ve installed the [...]]]></description>
			<content:encoded><![CDATA[<p>The steps below outline how to get started using Telerik Ajax within a SharePoint custom application page. If you&#8217;re developing a web part or even just a custom asp.net application, the concepts are still the same.</p>
<ol>
<li>Add the RadAjax.Net2.dll file into the GAC. If you need to find the RadAjax.Net2.dll file, if you&#8217;ve installed the Telerik web controls to your computer, they should be in the Telerik folder where you installed the Telerik suite.</li>
<li>Insert the following register tag at the top of the aspx page:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;">&lt;%@ Register <span style="color: #000066;">Assembly</span>=<span style="color: #ff0000;">&quot;RadAjax.Net2, Version=1.8.1.0, Culture=neutral, PublicKeyToken=3f7b438d1c762d0b&quot;</span> <span style="color: #000066;">Namespace</span>=<span style="color: #ff0000;">&quot;Telerik.WebControls&quot;</span> <span style="color: #000066;">TagPrefix</span>=<span style="color: #ff0000;">&quot;radA&quot;</span> %<span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></td></tr></table></div>

<p>In order to determine what the version and publickeytoken should be, put the dll into the GAC (c:\windows\assembly) and then right click the dll, click on Properties and you can copy and paste the version and publickeytoken.</li>
<li>IISRESET</li>
<li>Now that you have the control registered, it&#8217;s time to use it. Within the telerik ajax dll there&#8217;s two main controls to be aware of. The ajaxpanel and the ajaxmanager. The example I&#8217;ll show below is specific to the ajaxpanel. The following info is directly from the telerik ajax help:<br/><br />
<blockquote><p><strong>When to use RadAjaxPanel</strong></p>
<p>RadAjaxPanel is a lightweight control that lets you update a part of your web page with AJAX while keeping the rest of the page working with postbacks. </p>
<p>AJAX Panel is more suitable for cases when you need to update a group of neighboring controls at once. You have to wrap the controls that should be ajaxified in the AJAX Panel. Only controls that are inside the Panel will be updated via AJAX. You cannot set the Panel to update external controls on the page. </p>
<p>When a control (inside the Panel) tries to postback, it will make an AJAX request and all controls in the Panel will be updated. </p>
<p><strong>When to use RadAjaxManager</strong></p>
<p>AJAX Manager offers a complete solution for turning a postback-based application into an AJAX-driven one.</p>
<p>RadAjaxManager control is mostly dedicated to complex scenarios. With AJAX Manager you have many AJAX initiator controls that update different non-adjacent controls.  This is the major difference with AJAX Panel, which updates only itself (and controls that it holds).</li>
</ol>
</blockquote>
<p>So if you have a button, that does a lookup and populates some fields as an example, all you need to do is wrap that button and those fields inside a panel control. Note that if you just wrap the button within the panel, then the fields are not affected, and so clicking on the button will result in nothing.</p>
<p>Give that a shot, it&#8217;s pretty straight forward and easy to do and makes your custom web applications look a whole lot slicker!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2008/07/02/how-to-add-telerik-ajax-to-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Telerik Controls to SharePoint</title>
		<link>http://blog.qumsieh.ca/2008/01/31/how-to-add-telerik-controls-to-your-custom-sharepoint-application-pages/</link>
		<comments>http://blog.qumsieh.ca/2008/01/31/how-to-add-telerik-controls-to-your-custom-sharepoint-application-pages/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 00:18:29 +0000</pubDate>
		<dc:creator>shereen</dc:creator>
				<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://blog.qumsieh.ca/?p=43</guid>
		<description><![CDATA[If you&#8217;re building custom application pages within MOSS and need some guidance on how to build your pages using Telerik controls, I&#8217;ve outlined some steps to get you started. Create a new folder within the 1 c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS directory to store your custom application pages. For example: 1 c:\Program Files\Common Files\Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re building custom application pages within MOSS and need some guidance on how to build your pages using Telerik controls, I&#8217;ve outlined some steps to get you started.</p>
<ol>
<li>Create a new folder within the

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="console" style="font-family:monospace;">c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS</pre></td></tr></table></div>

<p>directory to store your custom application pages. For example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="console" style="font-family:monospace;">c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\CustomPages</pre></td></tr></table></div>

<p><a href='http://blog.qumsieh.ca/wp-content/uploads/2008/12/demo.zip'>Download Files</a></li>
<li>Create a new aspx page and use the attached code as a starting point. Let&#8217;s name it <strong>Demo.aspx</strong>. The trick to creating this page was to use the td styles defined by SharePoint to accomplish the same look and feel as the rest of the layouts pages within the application. We will see how this works in the next few steps. The attached zip folder contains two files: Demo.aspx and DemoFinal.aspx. The only difference between these two files is that DemoFinal.aspx contains assembly registrations for the telerik controls, and replaces the standard asp:TextBox control with the Telerik RadDatePicker control.</li>
<li>In order to add breadcrumbs to your new custom application page, you&#8217;ll have to add an entry to the layouts.sitemap file located in the inetpub folder

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="console" style="font-family:monospace;">C:\Inetpub\wwwroot\wss\VirtualDirectories\80\_app_bin</pre></td></tr></table></div>

<p>as outlined in <a href="http://weblogs.asp.net/jan/archive/2007/09/10/adding-breadcrumb-navigation-for-sharepoint-application-pages.aspx">Jan&#8217;s blog</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;siteMapNode</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Demo&quot;</span> <span style="color: #000066;">url</span>=<span style="color: #ff0000;">&quot;/_layouts/snc/Demo.aspx&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></td></tr></table></div>

</li>
<li>The next step is to add a safe control entry for the rad calendar control. One thing to note is that the radcalendar control also utilizes the radinput control, but we only need to add <strong>radcalendar.net2.dll</strong> as a safe control entry even though both will reside in the gac.

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;SafeControl</span> <span style="color: #000066;">Assembly</span>=<span style="color: #ff0000;">&quot;RadCalendar.Net2, Version=2.2.1.0, Culture=neutral, PublicKeyToken=a1432cd341173140&quot;</span> <span style="color: #000066;">Namespace</span>=<span style="color: #ff0000;">&quot;Telerik.WebControls&quot;</span> <span style="color: #000066;">TypeName</span>=<span style="color: #ff0000;">&quot;*&quot;</span> <span style="color: #000066;">Safe</span>=<span style="color: #ff0000;">&quot;True&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></td></tr></table></div>

</li>
<li>Install <strong>radcalendar.net2.dll</strong> to the gac</li>
<li>Install <strong>radinput.net2.dll</strong> to the gac</li>
<li>If you plan on skinning your control, you have to add the <strong>RadControls\Calendar\Skins</strong> to the web app root. An example of the web app root would be

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="console" style="font-family:monospace;">c:\Inetpub\wwwroot\wss\VirtualDirectories\80.</pre></td></tr></table></div>

<p>In order to track this down, within IIS manager, right click on the web site properties and click on Home Directory. That should tell you where your website root is located. Copy the files to this location. </p>
<p>The hierarchy should look similar to the screenshot below:<br />
<a href="http://blog.qumsieh.ca/wp-content/uploads/2008/12/picture_2.png"><img src="http://blog.qumsieh.ca/wp-content/uploads/2008/12/picture_2-300x225.png" alt="" title="picture_2" width="300" height="225" class="alignnone size-medium wp-image-52" /></a></li>
<li>You can now apply the skin in your control by editing the skin property as follows:</li>
<li>You can review what your final version should look like by comparing it to the file attached to this post.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.qumsieh.ca/2008/01/31/how-to-add-telerik-controls-to-your-custom-sharepoint-application-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
