Forum Discussion
QuickBaseCoachD
9 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>
QuickBaseCoachD
8 years agoQrew Captain
It worked fine for me.