Andre Bastos
Andre Bastos

Reputation: 21

Custom Section without Tree in Umbraco CMS

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

Answers (1)

Harsheet
Harsheet

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

Related Questions