fnReloadAjax() and IE8 example
fnReloadAjax() and IE8 example
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);
});
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);
});
This discussion has been closed.
Replies
Allan