Angular ngf-select fileupload not working with ngView

https://github.com/danialfarid/ng-file-upload

I am trying to use this ngFileUpload module.

but it doesn't work when i use a template called ng-view.

This works HTML (index.html)

<div ngf-select ng-model="files"></div>

      

But it doesn't work

HTML (index.html)

<div ng-view></div>

      

HTML (test.html)

<div ngf-select ng-model="files"></div>

      

JS (angular config)

    $routeProvider.when('/test', {
    templateUrl: '/test.html',
    controller: 'testController'

      

Anyone have the same problem like this?

- Thanks for reading..-

+3


source to share





All Articles