How would I be able to grab a hold of a dropdown provider from code behind? I am trying to create a cascading dropdown within the webdatagrid...
Hi,
I had a similar issue and I managed to solve with the following code.
DropDownList cboList = row.FindControl("cboList") as DropDownList.
Using the findcontrol method is correct. We have a sample for Cascading WebDropDowns at
http://help.infragistics.com/NetAdvantage/ASPNET/2010.1/CLR3.5/?page=WebDropDown_Cascading_WebDropDown_Controls.html
Magued