Prior to v18.3.35 in the ValueChange event I was able to retrieve the Element.ID via args.Element.ID. Now this value is null.
<SfDropDownList id="sp1" TValue="string" TItem="ScoreFields" PopupHeight="100px" Width="100px" Placeholder="Score" DataSource="@SetScores">
<DropDownListFieldSettings Text="Text" Value="ID"></DropDownListFieldSettings>
<DropDownListEvents TItem="ScoreFields" TValue="string" ValueChange="@ScoreUpdated"></DropDownListEvents>
</SfDropDownList>
public void ScoreUpdated(Syncfusion.Blazor.DropDowns.ChangeEventArgs<string, ScoreFields> args)
{
switch (args.Element.ID)