Hi,
We've just upgraded to 20.2.0.43 (from 19.4.0.56) and multiselect has completely stopped working. The datasource data is coming back as expected but nothing is being displayed either when adding or editing, this was working as expected previously. We couldn't see any details of breaking changes in the latest version.
<div class="input-grouping dateselect">
<label class="size-14 w-500">@Label</label>
<SfMultiSelect CssClass="" DataSource="@Data" TItem="Library" TValue="string[]" @bind-Value="@BindingValue">
<MultiSelectFieldSettings Text="Code" Value="Code"></MultiSelectFieldSettings>
<MultiSelectTemplates TItem="Library">
<ItemTemplate>
<span><span class='name'>@((context as Library).Code)</span><span class='destination'>@((context as Library).Description)</span></span>
</ItemTemplate>
<ValueTemplate>
<span>@((context as Library).Code)</span>
</ValueTemplate>
</MultiSelectTemplates>
</SfMultiSelect>
</div>
@code {
[Parameter]
public IEnumerable<Library> Data { get; set; }
}
Thanks Alex