<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Developing Multicolumn-DropDown/DropDownList with ASP.NET, the GridView and the AJAX Control Toolkit</title>
	<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/</link>
	<description>Thomas Claudius Huber (by friends just called ::: hubethom :::)</description>
	<pubDate>Sat, 20 Mar 2010 22:34:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: nutty</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2037</link>
		<dc:creator>nutty</dc:creator>
		<pubDate>Tue, 16 Mar 2010 04:37:28 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2037</guid>
		<description>Hi Thom,

Thanks for the info.

Regards,
Nutty</description>
		<content:encoded><![CDATA[<p>Hi Thom,</p>
<p>Thanks for the info.</p>
<p>Regards,<br />
Nutty</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hubethom</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2036</link>
		<dc:creator>hubethom</dc:creator>
		<pubDate>Mon, 15 Mar 2010 22:18:56 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2036</guid>
		<description>Hi nutty,

my time is limited and currently I can't give any support to this. Sorry.

Thomas</description>
		<content:encoded><![CDATA[<p>Hi nutty,</p>
<p>my time is limited and currently I can&#8217;t give any support to this. Sorry.</p>
<p>Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nutty</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2008</link>
		<dc:creator>nutty</dc:creator>
		<pubDate>Tue, 02 Mar 2010 23:08:04 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2008</guid>
		<description>Hi bro,
I was able to run your code just fine. But I want to embed it in another gridview(main) in an item template. I had a hard time filling the textbox during select index change in the gridview dropdown. Appreciate if you can help me. Please let me know if I need to post the code.</description>
		<content:encoded><![CDATA[<p>Hi bro,<br />
I was able to run your code just fine. But I want to embed it in another gridview(main) in an item template. I had a hard time filling the textbox during select index change in the gridview dropdown. Appreciate if you can help me. Please let me know if I need to post the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nutty</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2007</link>
		<dc:creator>nutty</dc:creator>
		<pubDate>Tue, 02 Mar 2010 10:55:46 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2007</guid>
		<description>Heres my code in the SelectedIndexChanged

protected void FriendGridView_SelectedIndexChanged(object sender, EventArgs e)

    {

        TextBox txtFrnd = (TextBox)gvHourlyStacks.FindControl("txtFriend") ;  

        // assign firstname

        if (FriendGridView.SelectedRow != null)

             txtFrnd.Text = Server.HtmlDecode(

              FriendGridView.SelectedRow.Cells[0].Text);

        else

            txtFrnd.Text = "";

    }</description>
		<content:encoded><![CDATA[<p>Heres my code in the SelectedIndexChanged</p>
<p>protected void FriendGridView_SelectedIndexChanged(object sender, EventArgs e)</p>
<p>    {</p>
<p>        TextBox txtFrnd = (TextBox)gvHourlyStacks.FindControl(&#8221;txtFriend&#8221;) ;  </p>
<p>        // assign firstname</p>
<p>        if (FriendGridView.SelectedRow != null)</p>
<p>             txtFrnd.Text = Server.HtmlDecode(</p>
<p>              FriendGridView.SelectedRow.Cells[0].Text);</p>
<p>        else</p>
<p>            txtFrnd.Text = &#8220;&#8221;;</p>
<p>    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nutty</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2006</link>
		<dc:creator>nutty</dc:creator>
		<pubDate>Tue, 02 Mar 2010 10:52:08 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2006</guid>
		<description>hope to hear from you soonest.</description>
		<content:encoded><![CDATA[<p>hope to hear from you soonest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nutty</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2005</link>
		<dc:creator>nutty</dc:creator>
		<pubDate>Tue, 02 Mar 2010 10:48:44 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2005</guid>
		<description>

            

                    

                    

                            

                            

                                

                                    

                                    

                                    

                                        

                                            &#60;asp:TextBox ID="txtFriend" runat="server" Text=''&#62;

                                                                                        

                                            

                                              



                                        

                                        

                                            &#60;asp:Label ID="Label1" runat="server" Text=''&#62;

                                        

                                    

                                    

                                    

                                    

                                    

                                    

                                    

                                    

                                

                            

                            

                            

                            

                                

                                    

                                

                            

                            



                                            

                                                

                                                        

                                                              

                                                              

                                                                

                                                                

                                                                

                                                                

                                                                                

                                                                

                                                

                                                              

                                                              

                                                              

                                                              

                                                         

                                               

                                                 

                                         &#60;%--cc1:DropDownExtender ID="DropDownExtender1" runat="server"

                                            DropDownControlID="FriendDropDown"

                                            TargetControlID="" /--%&#62;   

                                            

                                            

                     

           </description>
		<content:encoded><![CDATA[<p>&lt;asp:TextBox ID=&#8221;txtFriend&#8221; runat=&#8221;server&#8221; Text=&#8221;&gt;</p>
<p>                                            &lt;asp:Label ID=&#8221;Label1&#8243; runat=&#8221;server&#8221; Text=&#8221;&gt;</p>
<p>                                         &lt;%&#8211;cc1:DropDownExtender ID=&#8221;DropDownExtender1&#8243; runat=&#8221;server&#8221;</p>
<p>                                            DropDownControlID=&#8221;FriendDropDown&#8221;</p>
<p>                                            TargetControlID=&#8221;" /&#8211;%&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nutty</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2004</link>
		<dc:creator>nutty</dc:creator>
		<pubDate>Tue, 02 Mar 2010 10:47:51 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-2004</guid>
		<description>hi thom, I was able to run your code just fine. However I want to use it inside itemtemplate in gridviewMain. how can I pass the SelectedIndexChange in gridview2(pop) to that of gridviewMain.? heres my code.

 

            

                    

                    

                            

                            

                                

                                    

                                    

                                    

                                        

                                            &#60;asp:TextBox ID="txtFriend" runat="server" Text=''&#62;

                                                                                        

                                            

                                              



                                        

                                        

                                            &#60;asp:Label ID="Label1" runat="server" Text=''&#62;

                                        

                                    

                                    

                                    

                                    

                                    

                                    

                                    

                                    

                                

                            

                            

                            

                            

                                

                                    

                                

                            

                            



                                            

                                                

                                                        

                                                              

                                                              

                                                                

                                                                

                                                                

                                                                

                                                                                

                                                                

                                                

                                                              

                                                              

                                                              

                                                              

                                                         

                                               

                                                 

                                         &#60;%--cc1:DropDownExtender ID="DropDownExtender1" runat="server"

                                            DropDownControlID="FriendDropDown"

                                            TargetControlID="" /--%&#62;   

                                            

                                            

                     

           </description>
		<content:encoded><![CDATA[<p>hi thom, I was able to run your code just fine. However I want to use it inside itemtemplate in gridviewMain. how can I pass the SelectedIndexChange in gridview2(pop) to that of gridviewMain.? heres my code.</p>
<p>                                            &lt;asp:TextBox ID=&#8221;txtFriend&#8221; runat=&#8221;server&#8221; Text=&#8221;&gt;</p>
<p>                                            &lt;asp:Label ID=&#8221;Label1&#8243; runat=&#8221;server&#8221; Text=&#8221;&gt;</p>
<p>                                         &lt;%&#8211;cc1:DropDownExtender ID=&#8221;DropDownExtender1&#8243; runat=&#8221;server&#8221;</p>
<p>                                            DropDownControlID=&#8221;FriendDropDown&#8221;</p>
<p>                                            TargetControlID=&#8221;" /&#8211;%&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nanak</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-1926</link>
		<dc:creator>Nanak</dc:creator>
		<pubDate>Mon, 31 Aug 2009 09:06:10 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-1926</guid>
		<description>Your logic is great, and works very good.... as real exmaple, but i want to make custom control with same logic, can you help me with that.... because in now when ever i have to use it i have to write many things.... how can i make my custom control... please help me, as i am now exahusted..... with experimenting with multicolumn dropdown , i also created one.... like hiding panel... but didnt looked like real one.... my mail nanak.software@yahoo.com</description>
		<content:encoded><![CDATA[<p>Your logic is great, and works very good&#8230;. as real exmaple, but i want to make custom control with same logic, can you help me with that&#8230;. because in now when ever i have to use it i have to write many things&#8230;. how can i make my custom control&#8230; please help me, as i am now exahusted&#8230;.. with experimenting with multicolumn dropdown , i also created one&#8230;. like hiding panel&#8230; but didnt looked like real one&#8230;. my mail <a href="mailto:nanak.software@yahoo.com">nanak.software@yahoo.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: umair</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-1862</link>
		<dc:creator>umair</dc:creator>
		<pubDate>Tue, 14 Jul 2009 18:42:14 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-1862</guid>
		<description>Hi bro..
The last technique is really good.
Thanks a lot.
But i m facing one small issue which is whenever my cursor is on txtFriend a gridview populates but it starts some space before the txtFriend. How i can populate the gridview in a specific position?

Reply..</description>
		<content:encoded><![CDATA[<p>Hi bro..<br />
The last technique is really good.<br />
Thanks a lot.<br />
But i m facing one small issue which is whenever my cursor is on txtFriend a gridview populates but it starts some space before the txtFriend. How i can populate the gridview in a specific position?</p>
<p>Reply..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-1765</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Thu, 26 Feb 2009 22:39:12 +0000</pubDate>
		<guid>http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/#comment-1765</guid>
		<description>hi

What I mean is your first example, can this example be used in a database example ?</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>What I mean is your first example, can this example be used in a database example ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
