Hi!
I faced a very unpleasant issue while migrating from the 18.2.0.44 version to the 18.3.0.35 one.
I have a multiselect dropdown (fetched data from remote API) nested in a dialog's (SfDialog) content.
The problem is: the multiselect does not fetch data (does not send API requests) anymore. The interesting moment is that everything is working as expected if the multiselect is placed not in the dialog (in regular div, etc).
Here's simplified code snipped:
<SfDialog ShowCloseIcon="true" IsModal="true" @bind-Visible="@IsDialogVisible">
<DialogTemplates>
<Content>
<SfMultiSelect ModelType="typeof(UserModel)" @bind-Value="@Users" Mode="@VisualMode.CheckBox" EnableSelectionOrder="true" ShowDropDownIcon="true">
<SfDataManager Url="@UsersUrl" Adaptor="Adaptors.WebApiAdaptor" DataType="@nameof(UserModel)" CrossDomain=true></SfDataManager>
<MultiSelectFieldSettings Text="Name" Value="Email"></MultiSelectFieldSettings>
</SfMultiSelect>
</Content>
</DialogTemplates>
</SfDialog>
Hope you can reproduce this bug at your end.
Thank you.