I have an ajax multiselect with autobind of false. When returning to the page I would like my selected value(s) to display when the page loads, but they currently do not display until I click in the mulitselect.
Is there anything I can do to make this happen?
I've attached a sample project.
Is there anything I can do to make this happen?
I've attached a sample project.
@(Html.Kendo().MultiSelectFor(x => x.ReportOwner) .DataTextField("Name") .DataValueField("Pid") .DataSource(dataSource => dataSource .Read(read => read.Action("_RelatedEmployees", "AdvancedSearch")) .ServerFiltering(false) .Events(events => events.Error("onError")) ) .AutoBind(false) .Placeholder("Select report owners..."))