Thursday, July 19, 2007 8:01 AM
I have a drop down list on my Row Edit Template, but I need to bind it in the code behind to a datasource. Of course, I have no idea which controls collection I need to access: the grids, the rows, the templates...?
It turns out that you access it off the Band:
(DropDownList)UltraWebGrid1.Bands(0).RowEditItem.FindControl("DropDownList1")
Voila! Control binding goodness.
D