Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Bread crumbs in ver 4.0

admin
projects
items

Is there a way to set the visibility to false for the project.aspx page

User15255
· 1
User15255
Replies (11)
helpful
0
not helpful

You can set users to be in the "help desk" mode, in which case all they see is the items page, create and view items. Go to the Administration -> General under security to select a global group for help desk.


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Attached is the immage of what I need to hide alt text


User15255
· 1
User15255
helpful
0
not helpful

alt text


User15255
· 1
User15255
helpful
0
not helpful

What do you want the users to see? Just the items page per project?


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

alt text


User15255
· 1
User15255
helpful
0
not helpful

This is how the users see it in the ver 3.7alt text


User15255
· 1
User15255
helpful
0
not helpful

Not sure I follow. We have moved the link (summary, roadmap etc..) to the top. There is no other difference between 3.7 and 4.0.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

The aim is to hide everything besides "Summary" and "Items" from the end users since we currently do not use them


User15255
· 1
User15255
helpful
0
not helpful
ANSWER

Open Project/Project.aspx and put the following just before the last line of the file: <script type="text/javascript"> $(document).ready(function () { $('#<%= CellTabTesting.ClientID%>').hide(); $('#<%= CellTabChangelog.ClientID%>').hide(); $('#<%= CellTabRoadmap.ClientID%>').hide(); $('#<%= CellTabVersions.ClientID%>').hide(); $('#<%= CellTabComponents.ClientID%>').hide(); $('#<%= CellTabDocuments.ClientID%>').hide(); $('#<%= CellTabTimeTracking.ClientID%>').hide(); $('#<%= CellTabWorkload.ClientID%>').hide(); $('#<%= CellTabSchedule.ClientID%>').hide(); $('#<%= CellTabReports.ClientID%>').hide(); }); </script>


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

I appreciate. I will let you know the results.


User15255
· 1
User15255
helpful
0
not helpful

Thanks. It works fine.


User15255
· 1
User15255