zefoy / ngx-dropzone-wrapper

Angular wrapper library for Dropzone
MIT License
174 stars 51 forks source link

How can i manually adding file? #74

Closed ozkanozdemir closed 6 years ago

ozkanozdemir commented 6 years ago

Hello, I want to manually adding file. I tried this but i didn't.

That code don't give 'dropzone reference'

this.componentRef.directiveRef.dropzone()

ozkanozdemir commented 6 years ago

I solved the problem. I was using the dropzone() function in ngOnInit.

Must be:

ngAfterViewInit() { this.dropzone = this.componentRef.directiveRef.dropzone(); }

Thank you for this plugin. :clap: