onChange event not firing Blazor InputSelect
问题 I have the following Code for an InputSelect <InputSelect class="form-control form-control form-control-sm" placeholder="Role" disabled="@IsReadOnly" @bind-Value="Model.Role" @onchange="@RoleChanged"> <option value="Member">Member</option> <option value="Admin">Admin</option> <option value="Pioner">Pioneer</option> <option value="Retailer">Retailer</option> </InputSelect> And for the Code: bool ShowCreated; bool ShowUpdated; bool IsReadOnly; string SelectedRole; public EditForm AccountForm;