Question T20727
Visible to All Users

Change template of file upload question

created 5 months ago

Hi,

I have an angular project using the survey tool. I have a requirement to change the interaction on the question type file upload. Instead of choosing the file from the local machine to upload the file, the user can choose from a list of files. The way it works is on click on the file upload, a pop up angular material dialog is shown, and when a file is chosen, the file reference id is set to be the answer of that question.

It would be something like this
Clipboard-File-1.png

The solution should be to replace the template of the file upload, but i am not sure how to go on about it.

Answers approved by surveyjs Support

created 5 months ago

Hello,
To replace a standard file chooser with a custom dialog, implement the survey.onOpenFileChooser function and activate a custom file chooser dialog. Once files are uploaded, call the options.callback function and pass uploaded files to a File Upload form element.

Let us know if you have further questions.

    Show previous comments (6)

      Hello,
      Thank you for the clarification. The example I shared earlier actually shows how to:

      • Implement a custom Angular component. This component invokes a standard file chooser dialog for simplicity.
      • Handle the survey.onOpenFileChooser function and invoke a custom component's openDialog function.

      Please let me be more specific and share relevant parts of the code.
      survey.component.ts

      JavaScript
      this.model.onOpenFileChooser.add(this.onOpenFileChooserHandler.bind(this)); onOpenFileChooserHandler(sender: any, options: any) { this.currentOptions = options; this.fileChooser.filesSelected.subscribe((files) => { if (files && files.length > 0) { debugger; options.callback(files); } else { options.callback(null); } }); if (this.fileChooser) { this.fileChooser.openDialog(); } }

      custom-file-chooser.component.ts

      JavaScript
      import { Component, EventEmitter, Output, ViewChild, ElementRef, } from "@angular/core"; @Component({ selector: "app-custom-file-chooser", template: ` <div> <input type="file" (change)="onFileChange($event)" multiple accept="image/jpeg" style="display: none" #fileInput /> </div> `, }) export class CustomFileChooserComponent { @Output() filesSelected = new EventEmitter<File[]>(); @ViewChild("fileInput") fileInput!: ElementRef<HTMLInputElement>; openDialog(): void { if (this.fileInput) { console.log("open dialog"); this.fileInput.nativeElement.click(); } else { console.error("File input element is not initialized."); } } onFileChange(event: Event): void { const input = event.target as HTMLInputElement; if (!input.files || input.files.length === 0) { return; } const files = Array.from(input.files); this.filesSelected.emit(files); } }

      So, this demo actually uses a custom Angular component which uses a standard file chooser dialog. This was done for simplicity and to demonstrate how to invoke a custom file chooser component from the onOpenFileChooser function and use the options.callback function to send uploaded files to a File Upload element.

      I understand that in your usage scenario, you wish to implement some other kind of a file chooser UI. Hence, please feel free to move forward and implement your custom dialog which will be invoked from the survey.onOpenFileChooser function as shown in my demo.

      Should you have any further questions, please let me know.

        Hello, i have a follow up request.

        This proposed solution works perfectly. We have discovered lately that it can be possible to upload a value to the file upload question using drag and drop, which will skip showing the dialog as proposed above using the survey.onOpenFileChooser.add(). Is there a way to deactivate updating the value of the file upload question on drag-drop?

          Hello,

          I created a separate ticket on your behalf: T22145: File Upload - Deactivate updating the value of the file upload question on drag-drop?. We placed it in our processing queue and will process it shortly.