I would like to create a property of type IEnumerable and assign that to a dropdown in Radzen as a kind of lookup field. I could accomplish this in the VS project but wondering if you can do that directly in Radzen.
So at form initialise,
I would like to create a new property IEnumerable environments = new List {"Production","QA","DEV"};
Assign this property to a DropDown list and bind the list to and existing dataset so that the selected value updates a field in my DB table.