Rank: Member Groups: Member
Joined: 2/24/2010 Posts: 10
|
Hi..
How can I update a dropdownlist items if the ddl control is inside of a dialog control? I need update list items after fill a eogrid, the items depends of a content of the grid.
Thanks for your help.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will find the DropDownList with something like this:
DropDownList list = (DropDownList)Dialog1.ContentContainer.FindControl("DropDownList1");
Once you have a reference to the list control, everything else is the same.
Thanks
|