Hi - I just have a list of strings to bind.
I get the list from splitting a comma separated list...
I want the list of selected values posted to the server:
var multiselections = Model.InformationIntakeGroupOption.Split(new char[] {','}).ToList();
@(Html.Kendo().MultiSelectFor(model => model.InformationIntakeValue)
.Placeholder("Click here to select opitons...")
.BindTo(multiselections)
.AutoClose(false)
.Animation(false)
)
All I get is the first selected value, not all selected values...
Any ideas?