Hi,
I have a problem with combobox :
<ej-combo-box id="strECH_Site" datasource="ViewBag.Sitedatasource"></ej-combo-box>
The Sitedatasource is just a list of string : List<string>
In my model, "strECH_Site" is defined like this : public string strECH_Site { get; set; }
When i populate my combobox, it's ok, but when i select an item which contains several words, when i return to the controler, i get only the first word.
Exemple : The combobox contains "My value 1", "My Value 2", ... I select one of these.
And when i submit the form, i get only "My".
It seems that it stops at the first space character encountered.
Maybe there is a problem with "text" and "value" but i don't understand.
Can you help me please ?
Thx.
Fred.