Can I trigger a click on a hidden input type file element?
<InputFile OnChange="@LoadFiles" multiple hidden /><button class="btn btn-secondary" @onclick="SelectFile" type="button"><i class="icons8-upload"></i> Upload file(s)</button>@code { private void SelectFile() { //click the InputFile without JS } protected async Task LoadFiles(InputFileChangeEventArgs e) { // do something }}Is there a way in Blazor to do that without JavaScript?