Discovered Safari and Chrome users couldn't use my CDD control. I took steps to resolve the known issue such as updated my solution to the .net 4.0 framework and AjaxToolKit 4.5. However, my users who browse via a Webkit browser still experience an infinite loop with this control. Works fine in IE and Firefox. Any assistance to solve immediately would be greatly appreciated!
Vote to get this obvious show stopper's impact rating higher!!!
Comments: sorry I can't but this snippet is all you really need. I have a Class and Subclass dropdown. The Class dropdown has AutoPostBack=true and OnSelectedIndexChanged="class_dropdown_SelectedIndexChanged" and of course they are both wrapped in an UpdatePanel. dataSvc is my reference to my webservice and getDDSubClasses is a webservice method I use to get the ID and Description used in the dropdown. Hope that helps. ``` protected void class_dropdown_SelectedIndexChanged(object sender, EventArgs e) { subClass.Items.Clear(); DDSubClass[] subs = dataSvc.getDDSubClasses(Convert.ToInt32(class_dropdown.SelectedValue)); foreach (DDSubClass subclass in subs) { subClass.Items.Add(new ListItem(subclass.subClassId.ToString() + " - " + subclass.subClassDesc, subclass.subClassId.ToString())); } subClass.Items.Insert(0, new ListItem("Choose a Subclass", "")); ```
Vote to get this obvious show stopper's impact rating higher!!!
Comments: sorry I can't but this snippet is all you really need. I have a Class and Subclass dropdown. The Class dropdown has AutoPostBack=true and OnSelectedIndexChanged="class_dropdown_SelectedIndexChanged" and of course they are both wrapped in an UpdatePanel. dataSvc is my reference to my webservice and getDDSubClasses is a webservice method I use to get the ID and Description used in the dropdown. Hope that helps. ``` protected void class_dropdown_SelectedIndexChanged(object sender, EventArgs e) { subClass.Items.Clear(); DDSubClass[] subs = dataSvc.getDDSubClasses(Convert.ToInt32(class_dropdown.SelectedValue)); foreach (DDSubClass subclass in subs) { subClass.Items.Add(new ListItem(subclass.subClassId.ToString() + " - " + subclass.subClassDesc, subclass.subClassId.ToString())); } subClass.Items.Insert(0, new ListItem("Choose a Subclass", "")); ```