When adding or editing a record, I want disable "save" button before file uploading is completed. So I can't accidentaly stop file uploading.
How can I do It??
Thank You in advance.
This function is added in latest build now.
You can renew subscription when required.
Thanks.
I have another problem.
The name of file uploading is: rn.42-16 EW-A&G-BOSIT(UP-2486) gornjišta.xls (serbian language.
The name stored in the db is the same but the name in the server path is: rn.42-16 EW-A&G-BOSIT(UP-2486) gornjišta.xls.
Suggestions to resolve?
Thanks in advance
Massimo Gagliardi
In latest build, it hides the 'submit' button when uploading:
See http://prntscr.com/bhooau
For special character issue, this is little tricky.
http://stackoverflow.com/a/18481737/385377
One option is to transliterate to nearest similar character. e,g, š -> s
For that edit jqgrid_dist.php and add iconv line before move_uploaded_file function.
// tranliterate special characters before saving
$name = iconv("UTF-8","ISO-8859-1//TRANSLIT",$name);
if ( @move_uploaded_file($tmp_name, "$uploads_dir/$name") )
….