Reputation: 21
Im a relatively new programmer using Umbraco, and I've got a question for anyone who can help me.
I'm trying to do a Custom Section on the Umbraco backoffice, without having the tree.. I just want to render an angular view when the user clicks the "Section" button on the nav menu of Umbraco..
Can anyone give me a step by step tutorial on how to achieve this goal?
Upvotes: 2
Views: 812
Reputation: 628
You can add a custom section in Dashboard.config located in Config folder.
As an example -
<section alias="CustomDashboardSection">
<areas>
<area>sync</area>
</areas>
<tab caption="CustomControl">
<control>/App_plugins/CustomControl/Control.html</control>
</tab>
</section>
You can replace the name of the tab and control accordingly.
Hope it helps!
Thanks
Upvotes: 1