I solved this. IE doesn't enable refresh after upload, because its have a copy in cache. When I send directory content in xml I set a lot of no-cache directiva, but some of IE accept it, some of IE doesn't care it. I modified the 73. line of browser.html :
RE: IE doesn't refresh after upload
IE doesn't enable refresh after upload, because its have a copy in cache. When I send directory content in xml I set a lot of no-cache directiva, but some of IE accept it, some of IE doesn't care it. I modified the 73. line of browser.html :
original:
sUrl += '&CurrentFolder=' + encodeURIComponent( this.CurrentFolder ) ;
modified:
sUrl += '&CurrentFolder=' + encodeURIComponent( this.CurrentFolder ) ;
sUrl += '&stupidie=' + new Date().getTime();
Ie can't save the result in cache, because all request has a different dummy url parameter.
Very stupid idiot IE!