lenamtl
lenamtl
For security reason this cannot be modified, this message is generated by the browser. I have not found any way to bypass this message using this script or similar script.
Hi, Unfortunately this is not a fix, in fact It won't check the size correctly on server side. This code will remove the warning but will not check the size...
Hi, Here is the fix `$file['size'][0]` should be replaced by `$file['size']` Replace `if($options['maxSize'] && $file['size'][0] > $options['maxSize']) $errors[] = $this->error_messages['max_file_size'];` By `if($options['maxSize'] && $file['size'] > $options['maxSize']) $errors[] = $this->error_messages['max_file_size'];` Important:...
This bug can be closes now ;)
You can check this post https://github.com/simontaite/jquery.dirty/issues/3
Thanks !
Not supported at the moment, this was request by other users in the past... Could you elaborate your needs? One main problem i see or need to be think is...
Hi, but because the software allow user to upload file and group sharing we have to think on how to handle these case too... So the file and folder structure...
I'm using this input mask (this is very flexible with regex and the ability to set mask based on condition) vanilla JS or jQuery version https://github.com/RobinHerbots/Inputmask Here is my working...
Hi, showButtonPanel: false, hide both buttons Now and Done. Is there a way to show Done button and hide Now button?