• We are using the free version (1.8.1)…everything seems good in chrome and firefox.

    But when we upload or delete an item (and using IE10), it doesn’t show up. If we press the ‘refresh’ button, nothing happens.

    If we reload the page, everything shows up properly…It seems like the “refresh” button isn’t “running” but only in IE10

    Any ideas, bugfixes, or workarounds you can recommend?

    http://wordpress.org/plugins/sp-client-document-manager/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author smartypants

    (@smartypants)

    Confirmed its working on ie10 here, it is possible there is another javascrpt error that is stopping it. Can you use firebug to see if there are any javascript errors on your website?

    Thread Starter njrwc

    (@njrwc)

    Going through firebug, it calls
    http://<domain>/wp-content/plugins/sp-client-document-manager/ajax.php?function=file-list&uid=3&search=

    The javascript executes properly, but it doesn’t show the updated data — files that were either added or deleted.

    If I manually run the URL in the browser, the data is correct.

    Pressing refresh inside the sp document manager then shows the updated data.

    If you’d like to see view this happening or have any questions, please feel free to email me or reply here.

    Thread Starter njrwc

    (@njrwc)

    FYI: It was due to ajax being cached in IE10

    I added the following to my theme/template file and it solved the issue:

    <script>
    jQuery(document).ready(function($) {
    // Code here will be executed on document ready. Use $ as normal.
    $.ajaxSetup({ cache: false });
    });
    </script>

    Plugin Author smartypants

    (@smartypants)

    Thanks, added it to the core for the next update.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Problem with Refresh on IE10?’ is closed to new replies.