fnReloadAjax() and IE8 example

fnReloadAjax() and IE8 example

tacturcotacturco Posts: 4Questions: 0Answers: 0
edited July 2013 in General
I've just succeded to get around IE's caching problem.
Older topics have clue but I would like to share this easy solution
As Alan said in previous related topics we have to add a random get numbet to an url

oTable.fnReloadAjax(); works perfectly as expected in Chrome an Firefox

in IE we need a little extra coding like below example.


hope this helps


$( "#Button1" ).button().click(function()

{
var lower = 0;
var upper = 100000000;
var url = "xyz_tazminator.ashx/"+(Math.floor(Math.random()*(upper-lower))+lower)
oTable.fnReloadAjax(url);
});

Replies

  • allanallan Posts: 63,516Questions: 1Answers: 10,472 Site admin
    Thank you for passing this on!

    Allan
This discussion has been closed.