Hi
first of all the documentation link for dropdown List/Getting Started is 'page not found'
My dropdownlist is like
<ej-drop-down-list id="id1" ej-for="strBands" datasource=@Model.Bands show-checkbox="true" width="100%" watermark-text="Select the bands you need">
<e-drop-down-list-fields selected=@Model.strBands id="dxid" text="display" value="value" />
</ej-drop-down-list>
strBands is a string and returns only the first selection.
Model.Bands in controller is
public class BANDS
{
public BANDS ini(string strdisp, string strval)
{
display = strdisp;
value = strval;
return this;
}
public string display { get; set; }
public string value { get; set; }
}
Thank you in advance for the help
Geirge