MultiSelect Dropdown invalid behavior

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.


1 Reply 1 reply marked as answer

SP Sureshkumar P Syncfusion Team November 26, 2020 12:40 PM UTC

 
Greetings from Syncfusion support. 
 
Based on your shared information. we have validated your reported issue from our end. this is already known issue from the reported 18.3.35 version. And we have fixed this issue from our 18.3.50 version. So, we suggest you upgrade our latest version to resolve the issue. 
 
 
You can track the status of the requested requirement from the below feedback link.  
 
 
Regards, 
Sureshkumar P        
 


Marked as answer
Loader.
Up arrow icon