Blog Post
QuickBaseCoachD
7 years agoQrew Captain
I have some apps on Old Home Pages which have tons of links on the dashboard. Maybe 75 links plus another dashboard page linked off the first one for another set of links. Because of the large number of links, the old style dashboard is actually better than the New Dashboards for this purpose as the links are more compact and each link looks like a small button which is easier to visually
discern.
The links are in the form of an HTML table. Here is how the links start and there is much more similar code which follows. My question is - is there any way to migrate that code to the New dashboards so I do not have to to laboriously recreate all those links. I have tried pasting the code into various types of page such as a text element on the New Home pages and also into Rich text Pages and Code Pages, but all those just seem to reveal the code and not actual act as HTML.
discern.
The links are in the form of an HTML table. Here is how the links start and there is much more similar code which follows. My question is - is there any way to migrate that code to the New dashboards so I do not have to to laboriously recreate all those links. I have tried pasting the code into various types of page such as a text element on the New Home pages and also into Rich text Pages and Code Pages, but all those just seem to reveal the code and not actual act as HTML.
<TABLE border="1" cellpadding="3" cellspacing="0"> <tr><td><b>Specials Lists and Stock Finder</b></td> <td> <input onclick="parent.location='binu8dfef?a=q&qid=7'" type="button" value="Specials List ALL " /> <input onclick="parent.location='binu8dfef?a=q&qid=5'" type="button" value="Specials List West " /> <input onclick="parent.location='binu8dfef?a=q&qid=6'" type="button" value="Specials List East " /> <br> <input onclick="parent.location='bhke7mvnu?a=q&qid=77'" type="button" value="Search Specials ALL" /> <input onclick="parent.location='bhke7mvnu?a=q&qid=78'" type="button" value="Search Specials East" /> <input onclick="parent.location='bhke7mvnu?a=q&qid=79'" type="button" value="Search Specials West" /> <input onclick="parent.location='bd6kyiwtz?a=ShowPage&pageid=28'" type="button" value="Stock Finder" /> </td> </tr> ..... and it just continues for many more table rows. eventually ending with </td></tr> </TABLE>