|
Hi, I had some problems using the internet explorer in
conjunction with the periodicalUpdate functionality. Since nobody here seemed
to be able to help me, I managed to find out myself. Maybe it helps anyone. You have to modify a file inside the cocoon-ajax-block.jar
here the org\apache\cocoon\ajax\resources\js\common.js file has to be updated.
dojo.io.bind({
url: href, load:
function(type, data, evt){
insertion(target, data);
},
mimetype: "text/plain
// TODO: add an error-handling function }); Has to be changed to:
dojo.io.bind({
url: href, load:
function(type, data, evt){
insertion(target, data);
},
mimetype: "text/plain", useCache:
false,
preventCache: true
// TODO: add an error-handling function }); With this small change the periodicalUpdate seems to
work fine. Since caching does not really make sense in this case, it might be useful
changing this in the main cocoon distribution. Regards, Christofer [ c h r i s t o f e r d u t z ] IT-Berater univativ GmbH & Co. KG Robert-Bosch-Str. 7, 64293 Darmstadt fon: 0 61 51 / 66 717 - 21 fax: 0 61 51 / 66 717 - 29 email: [EMAIL PROTECTED] http://www.univativ.de Darmstadt, Stuttgart, Karlsruhe, Düsseldorf |
