On one of our .razor sites, the sfDropdownlist component is
used a lot. Sometimes there can be more than 50 dropdownlists. As soon as I
select something in a dropdownlist an event is thrown and the whole page
renders again. This leads to a big performance problem. Is there a way to
prevent the complete page from rendering and still write back the value of the
variable with @bind-Value?
<SfDropDownList TItem="DailySchedule" TValue="Guid?" Placeholder="@dayData.DailyScheduleAbbreviation"
@bind-Value="@dayData.DailyScheduleId" DataSource="@ViewModel.DailySchedules">
<DropDownListFieldSettings Value="Id" Text="Abbreviation"></DropDownListFieldSettings>
</SfDropDownList>