Forum Discussion
QuickBaseCoachD
10 years agoQrew Captain
Dan is correct and it is Dan's code that I use
Here are my more detailed notes.
Mark,
It�s like you said. You make a user defined html page. Then to see its URL click the magnifying glass icon. The page opens with the URL in the pop up window�s address bar. (ie that means make a code page using the settings like you would use to make a dashboard page except choose a Code page as the page type)
Pull an html widget into the dashboard with that user defined page URL. I put my widget at the bottom so as not to take up valuable top of browser real estate.
Works like a charm.
e.g. URL that gets pasted into the dashboard widget will look like is yqc.quickbase.com/db/be53mi1234?a=dbpage&pageID=4
This is what goes in the Code Page
Content:
<script>
window.setInterval(function() {
window.top.location.reload(true);
}, 15000);
</script>
Here are my more detailed notes.
Mark,
It�s like you said. You make a user defined html page. Then to see its URL click the magnifying glass icon. The page opens with the URL in the pop up window�s address bar. (ie that means make a code page using the settings like you would use to make a dashboard page except choose a Code page as the page type)
Pull an html widget into the dashboard with that user defined page URL. I put my widget at the bottom so as not to take up valuable top of browser real estate.
Works like a charm.
e.g. URL that gets pasted into the dashboard widget will look like is yqc.quickbase.com/db/be53mi1234?a=dbpage&pageID=4
This is what goes in the Code Page
Content:
<script>
window.setInterval(function() {
window.top.location.reload(true);
}, 15000);
</script>
- GauravSharma38 years agoQrew CommanderMark,
Do we face any performance issue or any slowness issue after applying the above code? because I want to use this code in the record and want to refresh the page when certain conditions meet.
Thanks,
Gaurav - QuickBaseCoachD8 years agoQrew CaptainIt worked fine for me.
- GauravSharma38 years agoQrew CommanderOkay. Sounds good. Thanks Mate :)