Page 1 of 1

Hide 'file transfer' pop-up window

Posted: Thu Jan 18, 2018 9:44 pm
by chadPT
Using TSPlus 10.50 HTML5 app

We use the TSPlusGUI for file uploads. Everything works fine, but when a file is being uploaded, a 'file transfer' pop-up appears with status and ability to cancel (bottom right). Window needs to then be manually closed. We would like to hide this, or change it to a size or position where the user can't see it. Is this possible?

Re: Hide 'file transfer' pop-up window

Posted: Fri Jan 19, 2018 1:31 am
by juwagn
Hello,

edit www\software\html5\settings.js > W.filedropfinalclose = "yes";
will auto hide on finish.

if you want that the button for file manager is not displayed in top menu entirely then
edit www\software\html5\settings.js > W.filelisting = "no";
However that won't affect displaying of file manager.


To completely hide it is not possible by default, here is extended handling needed.
edit www\software\html5\settings.js > W.customerScripts = { 0: "../custom1.js" };
and create file www\custom1.js with following content
/////////////
(function() { try { W.attachCSSRule("#JWTS_filesiframediv { z-index:-1000 !important; visibility: hidden !important; }"); } catch(e) { } })();
////////////

However in such case be aware that you won't be able to see the progress of file upload and so stay blind to such actions!