Is it possible to bind just a simple String[] as a datasource for a Dropdown?
string[] per= { "One", "Two", "Three" };
var index = this.grdBudget.Columns.FindIndex(col => col.Field == "Period"); //dropdown control
this.grdBudget.Columns.ElementAt(index).DataSource = per;
grdBudget.DataSource = new BudgetEntities().Requests.ToList();
grdBudget.DataBind();
PS in this short example I'm assigning 'per' statically but in my application I'll need to assign it dynamically, hence cannot just put the choices in the control def in xml.
Thanks,
Mike