How do you reset ASP.Net AJAX cascading dropdown control (client side) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:16:22Z http://stackoverflow.com/feeds/question/116564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/116564/how-do-you-reset-asp-net-ajax-cascading-dropdown-control-client-side 0 How do you reset ASP.Net AJAX cascading dropdown control (client side) rams 2008-09-22T18:19:22Z 2008-09-22T20:08:49Z <p>The cascading dropdown control works great except that I am unable to figure out a way to reset the dropdown client-side (in Javascript)</p> <p>My set up is something like this</p> <p>DD1 DD2 DD3 DD4</p> <p>each DD is dependent on the previous DD and uses webservice to load them. </p> <p>On change of DD3 I need to reset DD4 but the previous selection stays. </p> <p>Can this be done? I tried clearing the value in the supporting hidden input control (cddTest_ClientState) in vain</p> <p>TIA</p> http://stackoverflow.com/questions/116564/how-do-you-reset-asp-net-ajax-cascading-dropdown-control-client-side/116893#116893 2 Answer by rams for How do you reset ASP.Net AJAX cascading dropdown control (client side) rams 2008-09-22T19:18:19Z 2008-09-22T19:18:19Z <p>Here is the solution</p> <pre><code>&lt;asp:DropDownList ID="dd1" runat="server" onChange="ondd1ChangeHandler(this)&gt; &lt;/asp:DropDownList&gt; &lt;asp:DropDownList ID="dd2" runat="server"&gt; &lt;/asp:DropDownList&gt; &lt;cc1:CascadingDropDown ID="cdd2" runat="server" Category="Cat1" ParentControlID="dd1" PromptText="(Select Option)" ServiceMethod="GetOptions" ServicePath="Services/GetOptions.asmx" TargetControlID="dd2"&gt; &lt;/cc1:CascadingDropDown&gt; &lt;script type='text/javascript&gt; function ondd1ChangeHandler(dd){ var dd2=$get('dd2'); dd2.selectedIndex=0; var cdd=$find('cdd2'); if(cdd!=null){ cdd.set_SelectedValue('',''); cdd._onParentChange(null,false); } } &lt;/script&gt; </code></pre> <p>Hope this helps</p>