Is there any way to validate the name of a file when we upload an attachment? We have problems with special characters (ñ, á), these characters are not recognized by the URL. What is the way to solve this?
1 Answers
You can use callback events and check on server if the uploaded file name is correct, like it checks the extension in the demo code.
https://www.gridphp.com/demo/demos/editing/file-upload.phps
LIne 153, 156, 162
Your Answer