I have the following RadEditor control on my page. I want to limit file types allowed to upload in the DocumentManager. What I have allows .doc files to be uploaded but I get 'invalid file type' error for .txt and .pdf files. What is the correct syntax for the SearchPatterns property to limit allowed file types?
Thanks,
Tim
| <telerik:RadEditor ID="RadEditor1" runat="server""> |
| <DocumentManager ViewPaths="~/support/upload/docs" UploadPaths="~/support/upload/docs" DeletePaths="~/support/upload/docs" SearchPatterns="*.doc, *.docx, *.pdf, *.txt" MaxUploadFileSize="2097152" /> |
| <Content></Content> |
| </telerik:RadEditor> |
Thanks,
Tim
