I want to have “real-time” information in my grid. To do that, I refresh every five seconds the grid:
setInterval(function(){jQuery(“#list1”).trigger(“reloadGrid”);}, 5000);
Unfortunately the refresh is visible: the grid is empty during a few milliseconds and filled after.
How to eliminate or decrease this “flash” effect ?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top