0

I'm trying to add the AngularUI to use in the Umbraco backoffice, but i cant seem to get it working. Can anyone shine some light to how should i achieve this?

2
  • Be aware that Umbraco uses an old version of AngularJS (v 1.1.5), so plugging in third party packages might not work as expected Commented Feb 6, 2017 at 12:24
  • Yeah i think that's the problem, i just checked and the angular.ui.js is getting included on my page.. Cant seem to get the pagination tag working tho Commented Feb 6, 2017 at 12:34

1 Answer 1

0

You need to create a new package manifest file for this where you reference the AngularUI javascript file.

To do this, create a new folder under the App_Plugins folder called CustomBackoffice. There you put the Angular UI javascript file.

Then create a new file in this same folder called package.manifest and add following code:

{       
    javascript: [
        '~/App_Plugins/CustomBackoffice/angular-ui.js'
    ]
}

See docs: https://our.umbraco.org/documentation/extending/property-editors/package-manifest

Sign up to request clarification or add additional context in comments.

1 Comment

Hello, i do have that.. My package.manifest looks like this: javascript: [ '~/App_Plugins/custom/assets/ui-bootstrap-2.5.0.js', '~/App_Plugins/custom/default/approval.resource.js', '~/App_Plugins/custom/default/defaultController.js', '~/App_Plugins/custom/ExportData/exportdata.controller.js', '~/App_Plugins/custom/ImportData/importdata.controller.js' ] What do i need to do more so i can use for example the tag "pagination" on my view?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.