Forum Discussion
_anomDiebolt_
10 years agoQrew Elite
Create a user defined page named refresh.html with this code:
<script>
setTimeout(function(){
parent.location.reload(1);
}, 5000);
</script>
Then place the page on the bottom of your application dashboard using the web page widget option. You can adjust the timer (5000 milliseconds) to suit your needs. The reason to put it at the bottom is to not overtake the information currently displayed on the dashboard.
<script>
setTimeout(function(){
parent.location.reload(1);
}, 5000);
</script>
Then place the page on the bottom of your application dashboard using the web page widget option. You can adjust the timer (5000 milliseconds) to suit your needs. The reason to put it at the bottom is to not overtake the information currently displayed on the dashboard.
- GauravSharma38 years agoQrew CommanderHi Dan,
Can I use the same thing in the record of the table?
I need to refresh out the record if some predefined conditions meet. I know it is possible with your world famous IOL technique but, need your thoughts on it.
Thanks,
Gaurav - AdamKeever17 years agoQrew CommanderAwesome. Thanks Dan.