How do you reset ASP.Net AJAX cascading dropdown control (client side) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T09:16:22Zhttp://stackoverflow.com/feeds/question/116564http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/116564/how-do-you-reset-asp-net-ajax-cascading-dropdown-control-client-side0How do you reset ASP.Net AJAX cascading dropdown control (client side)rams2008-09-22T18:19:22Z2008-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#1168932Answer by rams for How do you reset ASP.Net AJAX cascading dropdown control (client side)rams2008-09-22T19:18:19Z2008-09-22T19:18:19Z<p>Here is the solution</p>
<pre><code><asp:DropDownList ID="dd1" runat="server" onChange="ondd1ChangeHandler(this)>
</asp:DropDownList>
<asp:DropDownList ID="dd2" runat="server">
</asp:DropDownList>
<cc1:CascadingDropDown ID="cdd2" runat="server" Category="Cat1"
ParentControlID="dd1" PromptText="(Select Option)" ServiceMethod="GetOptions"
ServicePath="Services/GetOptions.asmx" TargetControlID="dd2">
</cc1:CascadingDropDown>
<script type='text/javascript>
function ondd1ChangeHandler(dd){
var dd2=$get('dd2');
dd2.selectedIndex=0;
var cdd=$find('cdd2');
if(cdd!=null){
cdd.set_SelectedValue('','');
cdd._onParentChange(null,false);
}
}
</script>
</code></pre>
<p>Hope this helps</p>