Hi,
I've updated the dll's of my project, and my dropdownlist not binding correctly.
My binding:
@Html.EJ().DropDownListFor(x => x.IdCar, new DropDownListProperties()
{
DataSource = (IEnumerable<object>)ViewBag.dsCars,
DropDownListFields = new DropDownListFields() { Text = "Name", Value = "Id" }
}).Width("100%")
I've done an example with your example creator and.... it works fine!!
Investigating, I've see that in the example it used for syncfusion.EJ version 15.1450.0.33 (.NET project's framework is 4.6). In my project, I use 15.1460.0.33 version, so I change to 1450 and works fine.
Thanks