to flicker or not to flicker
to flicker or not to flicker
degenaro
Posts: 24Questions: 1Answers: 0
My code is called on a timer (30 seconds) to update a monitor page stared at by users, and looks like this:
[code]
function load_data()
{
oTable.fnClearTable();
oTable.fnReloadAjax();
}
[/code]
Each 30 seconds, the table flickers. The flicker seems to disappear if I remove the fnClearTable() call. What's the downside to removing?
Thanks.
Lou.
[code]
function load_data()
{
oTable.fnClearTable();
oTable.fnReloadAjax();
}
[/code]
Each 30 seconds, the table flickers. The flicker seems to disappear if I remove the fnClearTable() call. What's the downside to removing?
Thanks.
Lou.
This discussion has been closed.
Replies
*Edit* - Didn't read the last line :-). So there is no downside. Have a look at the fnReloadAjax code - it calls fnClearTable.
Allan