Using MudBlazor, how can I respond to checkbox changes to create a Select All checkbox for a list of checkboxes
I’m trying to create something like the multi-select Select control except the list of checkboxes are always visible. I’ve gotten pretty close using @bind-Value and @oninput, but the @oninput fires before the checkbox value has changed causing the “Select All” state to be behind by 1 selection. Is there a better way to bind these, or is it possible to just have the Select control stay open?