Hi
I wonder if anyone could help with an issue i am having with Kendo Multi-selection drop down lists.
i have a button which manually populates the field in the code, however when i try to access the object with jquery it results in the control making a copy of itself
Many Thanks,
My MVC razor code
<div class="col-md-2">
@Html.Kendo().MultiSelectFor(m => m.SelectedMeasuringPoints).BindTo(Model.MeasuringPoints.Select(x => x.TrimStart('0'))).Placeholder("Select points...").TagTemplate("0000#: data #").HtmlAttributes(new { @ID = "MPMultiSelection" })
</div>
/My javascript
function selectDeselectAllMP() {
//Get handle for the measuring point multi-selection
var mpMultiselection = $('#MPMultiSelection').kendoMultiSelect().data("kendoMultiSelect");
}