- Home
- Forum
- Angular - EJ 2
- Template in Angular Uploader component
Template in Angular Uploader component
Hi,
Regards,
Sandip Kumar
SIGN IN To post a reply.
3 Replies
BC
Berly Christopher
Syncfusion Team
February 12, 2020 12:56 PM UTC
Hi Sandip,
Greetings from Syncfusion support.
You can use the Uploader component with ng-template as mentioned in the below documentation.
To know more about template option, please refer the below demo link.
Regards,
Berly B.C
SK
Sandip Kumar
February 13, 2020 05:51 AM UTC
hi

Attachment: Untitled_d6222e99.zip
How can I solve this problem (Property 'uploadWrapper' is private and only accessible within class 'Uploader'.)?
I am not able to build project to production mode due to this error.
Attachment: Untitled_d6222e99.zip
PO
Prince Oliver
Syncfusion Team
February 13, 2020 10:13 AM UTC
Hello Sandip,
This is a typing error and occurs due to accessing the private member of the UploaderComponent. We can resolve this error by casting the uploader instance as any type. Kindly refer to the following code snippet.
|
public onFileUpload(args: any) {
let li: HTMLElement = (this.uploadObj as any).uploadWrapper.querySelector('[data-file-name="' + args.file.name + '"]');
let progressValue: number = Math.round((args.e.loaded / args.e.total) * 100);
li.getElementsByTagName('progress')[0].value = progressValue;
li.getElementsByClassName('percent')[0].textContent = progressValue.toString() + " %";
}
public onuploadSuccess(args: any) {
if (args.operation === 'remove') {
let height: string = document.getElementById('dropArea').style.height;
height = (parseInt(height) - 40) + 'px';
document.getElementById('dropArea').style.height = height;
} else {
let li: HTMLElement = (this.uploadObj as any).uploadWrapper.querySelector('[data-file-name="' + args.file.name + '"]');
let progressBar: HTMLElement = li.getElementsByTagName('progress')[0];
progressBar.classList.add('e-upload-success');
li.getElementsByClassName('percent')[0].classList.add('e-upload-success');
let height: string = document.getElementById('dropArea').style.height;
document.getElementById('dropArea').style.height = parseInt(height) - 15 + 'px';
}
|
Let us know if you need any further assistance on this.
Regards,
Prince
SIGN IN To post a reply.
- 3 Replies
- 3 Participants
-
SK Sandip Kumar
- Feb 12, 2020 06:19 AM UTC
- Feb 13, 2020 10:13 AM UTC