I have a dropdown that retrieves from an ApiAdaptor, and my application is supposed to have "offline forms", therefore we need the dropdowns to load "last retrieved data" even if a connection to the server is not possible. I tried with the offline parameter, and it is not working. The dropdown looks something like this:
<SfDropDownList @ref="CompaniesDropdownRef" @bind-Value="formData.CompanyId"
AllowFiltering="true" ShowClearButton="false" TItem="CompaniesView" TValue="int"
Placeholder="Select a Company" EnableVirtualization="true" FilterType="Syncfusion.Blazor.DropDowns.FilterType.Contains">
<DropDownListFieldSettings Text="Name" Value="Id" />
<DropDownListEvents TItem="CompaniesView" TValue="int" />
<SfDataManager Url="@CompaniesUrl" Adaptor="Adaptors.WebApiAdaptor" CrossDomain="true" Offline="true"/>
</SfDropDownList>