Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi guys,
Could you please let me know if it is possible to hide the "tree" in backoffice? I'm looking at how to create a customized "dashboard" in backoffice and followed up the article of http://www.enkelmedia.se/blogg/2013/11/22/creating-custom-sections-in-umbraco-7-part-1.aspx
However my situation is that we only need the dashboard view, no tree control is needed.
thanks.
Hello,
A dashboard is part of a section and a section always needs a tree. If you only want to display the dashboard perhaps it's better to just add the dashboard to the developer or settings section.
Jeroen
I managed to do this in code:
<script> function CustomDashboardController($scope, appState) { appState.setGlobalState("showNavigation", false); } </script> <style> @media (min-width: 1101px) { #contentwrapper, #umb-notifications-wrapper { left: 80px !important; } } </style>
The tree will be shown again tho when resizing the browser window.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Hide the tree in backoffice
Hi guys,
Could you please let me know if it is possible to hide the "tree" in backoffice? I'm looking at how to create a customized "dashboard" in backoffice and followed up the article of http://www.enkelmedia.se/blogg/2013/11/22/creating-custom-sections-in-umbraco-7-part-1.aspx
However my situation is that we only need the dashboard view, no tree control is needed.
thanks.
Hello,
A dashboard is part of a section and a section always needs a tree. If you only want to display the dashboard perhaps it's better to just add the dashboard to the developer or settings section.
Jeroen
I managed to do this in code:
The tree will be shown again tho when resizing the browser window.
is working on a reply...