Hello,
I have a Listgrid that is updated every 30 seconds with this code:
Some users are reporting that sometimes the "Finding records that match your criteria..." doesn't go away and they have to refresh the browser window. It seems to be caused when there is a temporary network problem ( Example: proxy server restart ).
Is there something that i can't change to avoid this behaviour?
I have a Listgrid that is updated every 30 seconds with this code:
Code:
<script type="text/javascript"> function updateGrid() { grid.invalidateCache(); } window.setInterval( 'updateGrid()' , 30000 ); </script>
Is there something that i can't change to avoid this behaviour?
Comment