Re: Javascript/JQuery after ajaxToolkit:CascadingDropDown populates Programming Web Development by jtok …I had to add BehaviorIDs to each of my cascadingdropdown controls and then search for them instead of …controls using $get and their ID, but the cascadingdropdown controls are being found using $find and their behaviorID… to the selection prompt, you can set just the primary cascadingdropdown like this: ddl1.selectedIndex = 0; if (cddl1 != … Javascript/JQuery after ajaxToolkit:CascadingDropDown populates Programming Web Development by jtok … with an updatepanel that contains two `ajaxToolkit:CascadingDropDown` controls. I am trying to populate them…methods I've tried, the javascript runs before `cascadingdropdown` controls have rendered. It finds the initial …`dropdownlist` controls just fine, but the cascadingdropdown controls return null. I know the javascript function… ajax CascadingDropDown Programming Web Development by zappan … run the code. it mention that Unknown server tag 'ajaxToolkit:CascadingDropDown'. i already include the ajaxtoolkits reference and also [code]<… Dazed and Confused Programming Web Development by miweiser …SqlDataReader Dim kvPlayer As StringDictionary = CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues) Dim intTeamId As …cmdFetchPlayer.ExecuteReader Dim kvTeam As StringDictionary = CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues) Dim intConfId As Integer… Re: Dazed and Confused Programming Web Development by kvprajapati Please verify the database and read articles - [url]https://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Walkthrough/CCDWithDB.aspx[/url] and [url]http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/CascadingDropDown/CascadingDropDown.aspx[/url] Cascading Drop Down Lists using C# and AJAX Programming Web Development by drinksbreak …[WebMethod] public CascadingDropDownNameValue[] GetStatesForCountries(string knownCategoryValues, string category) { StringDictionary kv = CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues); int country_id; if (!kv.ContainsKey("Countries"… Re: javascript Programming Software Development by virang_21 use ASP.NET AJAX Extension or simply the AJAX toolkit . [URL="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx"]http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx[/URL] Re: I've two Drop Down List Box in a form and need to change the 2nd dropdown lists Programming Web Development by stbuchok Check out this: [url]http://www.dotnetcurry.com/ShowArticle.aspx?ID=221[/url] and this: [url]http://www.asp.net/ajax/ajaxcontroltoolkit/samples/CascadingDropDown/CascadingDropDown.aspx[/url] Re: I've two Drop Down List Box in a form and need to change the 2nd dropdown lists Programming Web Development by rajendradhakal Actually i'm fully new to this one. I've done vb6 since long ago. From where to donwload and [QUOTE=stbuchok;1597969]Check out this: [url]http://www.dotnetcurry.com/ShowArticle.aspx?ID=221[/url] and this: [url]http://www.asp.net/ajax/ajaxcontroltoolkit/samples/CascadingDropDown/CascadingDropDown.aspx[/url][/QUOTE] Re: I've two Drop Down List Box in a form and need to change the 2nd dropdown lists Programming Web Development by rajendradhakal [CODE]http://www.asp.net/ajax/ajaxcontroltoolkit/samples/CascadingDropDown/CascadingDropDown.aspx[/CODE] yea this is best way but unable to implement due to few ideas. Re: Javascript/JQuery after ajaxToolkit:CascadingDropDown populates Programming Web Development by JorgeM Are you 100% sure the function works? Sorry to ask. Re: ajax CascadingDropDown Programming Web Development by Tschuikow I had the same problem, and the solution was that i moved the project-files from network drive to local disk. Re: Dazed and Confused Programming Web Development by miweiser That's essentially where I got this code from...albeit converted from C#.