Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
Within a code page you can do this:
However, after a period of time these URLs will disappear as the identifier "8f49139-16" refers to a version of a QuickBase release. When new releases come out QuickBase retires the older URLs. So you best be is to copy these files to code pages:
Note if you see some oddly formatted HTML above it was introduced through pasting code into the forum.
<script src="https://assets.quickbasecdn.net/res/8f49139-16/js/highcharts/highcharts.js"></script>
<script src="https://assets.quickbasecdn.net/res/8f49139-16/js/highcharts/highcharts-more.js"></script>
<script src="https://assets.quickbasecdn.net/res/8f49139-16/js/highcharts/modules/exporting.js"></script>
<script src="https://assets.quickbasecdn.net/res/8f49139-16/js/highcharts/modules/solidgauge.js"></script>
<script src="https://assets.quickbasecdn.net/res/8f49139-16/js/highcharts/modules/funnel.js"></script>
<script src="https://assets.quickbasecdn.net/res/8f49139-16/js/highcharts/adapters/standalone-framework.js"></script>
However, after a period of time these URLs will disappear as the identifier "8f49139-16" refers to a version of a QuickBase release. When new releases come out QuickBase retires the older URLs. So you best be is to copy these files to code pages:
<script src="https://SUBDOMAIN.quickbase.com/db/DBID?a=dbpage&pagename=highcharts.js"></script>
<script src="https://SUBDOMAIN.quickbase.com/db/DBID?a=dbpage&pagename=highcharts-more.js"></script>
<script src="https://SUBDOMAIN.quickbase.com/db/DBID?a=dbpage&pagename=exporting.js"></script>
<script src="https://SUBDOMAIN.quickbase.com/db/DBID?a=dbpage&pagename=solidgauge.js"></script>
<script src="https://SUBDOMAIN.quickbase.com/db/DBID?a=dbpage&pagename=funnel.js"></script>
<script src="https://SUBDOMAIN.quickbase.com/db/DBID?a=dbpage&pagename=standalone-framework.js"></script>
Note if you see some oddly formatted HTML above it was introduced through pasting code into the forum.