Reloading Dropdown and DropdownGrid

So I'm trying to reload a dropdown list and a dropdown grid after adding a new object through a dialog, exactly like how it works for a datagrid. But the code doesn't seem to recognize the controls within the designer.cs. Is there a way to do this? I want to do exactly this except with a dropdown grid.
image

1 Like

Hi @kgordon,

You are right, at the moment there is Reload() method only for DataGrid and DataList. For DropDown and DropDownDataGrid you can execute the method used to get the data for these components - usually Page Load - this.Load().

1 Like

is this still the case?