Upload component Accept filter

what worked:
<RadzenUpload Url="upload/single"
Style="margin-bottom: 20px;"
Accept=".pdf"
Auto="true"
Progress=@(args => OnProgress(args, "Single file upload"))>

what didn't work:
<RadzenUpload Url="upload/single"
Style="margin-bottom: 20px;"
Accept="pdf files(.pdf)/.pdf|word (.doc)/.doc|word (*.docx).docx"
Auto="true"
Progress=@(args => OnProgress(args, "Single file upload"))>

<RadzenUpload Url="upload/single"
Style="margin-bottom: 20px;"
Accept="pdf files(.pdf)|.pdf|word (.doc)|.doc|word (*.docx)|.docx"
Auto="true"
Progress=@(args => OnProgress(args, "Single file upload"))>

Hi @rwdevalcourt,

You can check this thread which explains what the valid values are: Blazor Upload file - #2 by korchev