TeamDesk Knowledge Base & Support

   Home      FAQ      Forum      Idea Exchange      Ask a Question      My Stuff      Help   
  
Add hyperlink to database image or database name
It would be useful to have the ability to add a link to the database name or image.
This can be used as a default “Home” button that is visible throughout the site. Especially for new users and when you have multiple workspaces.
Maybe it could be done via CSS?
ID
1126
Category
Customization
Author

Gii Systems
Date Created
8/21/2017 5:15:57 AM
Date Updated
8/21/2017 9:40:09 PM
Status
New Idea
Score
20
Promoted By
Patricio BustosGii Systems
Comments
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.










Feedback
 
Back to Search Results