Is there a way to limit Material UI TextFields of input type = file to accept only pdf?

4.7k Views Asked by At

I am trying to make my input type=file to limit the user to only upload pdf.

I looked it up and saw that using accept attribute can help. But it is not working using material UI text fields.

Any solution I can try?

2

There are 2 best solutions below

4
On BEST ANSWER

Have you tried this:

<TextField type={"file"} inputProps={{accept:"application/pdf"}}/>
1
On

<TextField type={"file"} inputProps={{accept:"application/pdf"}}/>