I have the version Janus GridEX Control v3.5.
As datasource I have implemented a dictionary:
Dictionary<Guid, Vehicle> vehicle
s= new Dictionary<Guid, Vehicle
>();
I have the following source code in my project:
gridEX1.DropDowns["VehicleDropDown"].DataSource = vehicle
s
.Values.ToList();
gridEX1.DropDowns["VehicleDropDown"].DisplayMember = "licenseplatenumber";
Unfortunately, no license plate numbers are displayed in the dropdown list.
What am I doing wrong?