cooper collier 8/21/2017 9:40:09 PM Adding the ability to make the title into a link, is something the teamdesk team would need to do. But I created a limited way that may accomplish what you would like. The disadvantage is you will need to make this in every single table.
I have multiple examples/ways to do it, below.
The first thing is to make an xhtml button and have it shown on the view and the forms. put the following code in it.
<a style="
margin:5px; border:solid lime 1px; z-index:999999; padding:5px; text-decoration:none; display: inline-block; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); " href="copy the view you want here ">
Return to Start
</a>
If we add three lines of code to the top, this will move the button to the top left of the screen.
<a style=" position: fixed; top:30px; left:10px; margin:5px; border:solid lime 1px; z-index:999999; padding:5px; text-decoration:none; display: inline-block; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); " href="copy the view you want here ">
Return to Start
</a>
Finally, this example will make a "bar" across the top of the window. You can make multiple links and create a custom button bar.
<a style=" position: fixed; top:30px; left:0px; width:100%; text-align:center; background-color:lightgrey; z-index:999999; padding:5px; text-decoration:none; display: inline-block; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); " href="copy the view you want here ">
Return to Start
</a>
You can even hide the Database Title, add the css height:##; and font-size:##px; to make your link as tall as you need.
You will also want to move the style section to the dbstyles.css sheet, and use an id="" tag so you can adjust all the tables at one time.
I think you may be able to hide the column name and the container, that is left in the tables and forms.
|