Originally, my page has multiple asp:DropDownList controls that were cascading, using the <ajaxToolkit:CascadingDropDown>. For example:<div id="divSCP1" style="overflow:auto"> <asp:DropDownList ID="ddlSCP1" runat="server" Width="300px"> </asp:DropDownList><br /> <ajaxToolkit:CascadingDropDown ID="cddSCP1" runat="server" Category="Practice" TargetControlID="ddlSCP1" LoadingText="Loading Practices.." ServicePath="PopulateDropDownsService.asmx" ServiceMethod="GetPractices" SelectedValue='<%# DataBinder.Eval(Container.DataItem,"sprac1") %>' > </ajaxToolkit:CascadingDropDown> </div> To provide consistency on the page, I replaced each of the asp:DropDownList controls with the Infragistics WebDropdown control. Can I use the same service (that is referenced in the Service Path) with the WebDropDown control?Thanks,Chris
Hi Chris,
Thank you for posting in the community.
To answer your question, it is possible to populate WebDropDown with the results of a web service call. A guide illustrating how this is done can be found at:
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2011.2/CLR4.0/html/WebDropDown_Binding_WebDropDown_to_a_Web_Service.html
Please let me know if this helps.