Hi, I have setup a EjsDropDownList like this:
<EjsDropDownList ID="brands" PlaceHolder="Selecciona la marca" OnValueSelect="@Lookup" DataSource="@VehicleBrands">
<DropDownListFieldSettings Text="BrandName" Value="VehicleBrandID"></DropDownListFieldSettings>
</EjsDropDownList>
The control populates it self with the correct data, but when I select one value it does triggers Lookup method, which is defined like this:
void Lookup(SelectEventArgs e)
{
//TODO
}
If I debug the value of e, there is an ItemData property, but all the values that are inside ItemData are null.
Can you point me in the right direction?
Regards.