DataJuggler / BlazorFileUpload

This was originally a wrapper of Steve Sanderson's BlazorFileInput. It has since been upgraded to a wrapper of ASP.NET CORE FileInput
32 stars 11 forks source link

Visible not working in 1.3.5 #15

Open sunil-c opened 4 years ago

sunil-c commented 4 years ago

I'm using 1.3.5 and the Visible property to turn off the standard file upload button is not having any effect in Chrome Version 81.0.4044.129 (Official Build) (64-bit)

DataJuggler commented 4 years ago

I know. I thought it was working. Best thing to for Chrome is in CSS, use:

Sorry, I was trying to fix the Edge issue, but now with Latest Edge this works for that also.

The sample project here also has examples.

input[type=file], / FF, IE7+, chrome (except button) / input[type=file]::-webkit-file-upload-button { cursor: pointer; display: none; visibility: hidden; }

sunil-c commented 4 years ago

Thanks. I'll try that and let you know the results.

sunil-c commented 4 years ago

Awesome, it worked.

DataJuggler commented 4 years ago

Thanks, I will try and fix the Visible issue. I got busy on another project (https://pixeldatabase.net).