Having trouble getting help?
Contact Support
Contact Support
Sort the selected files in Angular Uploader component
27 Apr 20243 minutes to read
You can sort the selected files in an uploader component by using the selected event. Refer to the following example.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { UploaderModule } from '@syncfusion/ej2-angular-inputs'
import { Component, ViewChild } from '@angular/core';
import { UploaderComponent, SelectedEventArgs, FileInfo } from '@syncfusion/ej2-angular-inputs';
@Component({
imports: [
UploaderModule
],
standalone: true,
selector: 'app-root',
templateUrl: 'default.html',
styleUrls: ['index.css']
})
export class AppComponent {
@ViewChild('defaultupload')
public uploadObj?: UploaderComponent;
public path: Object = {
saveUrl: 'https://services.syncfusion.com/angular/production/api/FileUploader/Save',
removeUrl: 'https://services.syncfusion.com/angular/production/api/FileUploader/Remove'
};
public initial:boolean = true;
public onSelect(args: SelectedEventArgs): void {
if (this.initial) { this.initial = false; return; }
args.isModified = true;
let oldFiles: FileInfo[] = this.uploadObj?.getFilesData() as FileInfo[];
let filesData: FileInfo[] = args.filesData.concat(oldFiles);
let modifiedData: FileInfo[] = this.sortFileList(filesData);
args.modifiedFilesData = modifiedData;
}
public sortFileList(filesData: FileInfo[]): FileInfo[] {
let files: FileInfo[] = filesData;
let fileNames: string[] = [];
for (let i: number = 0; i < files.length; i++) {
fileNames.push(files[i].name);
}
let sortedFileNames: string[] = fileNames.sort();
let sortedFilesData: FileInfo[] = [];
let index: number = 0;
for (let name of sortedFileNames) {
for (let i: number = 0; i < files.length; i++) {
if (name === files[i].name) {
sortedFilesData.push(files[i]);
}
}
}
return sortedFilesData;
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
You can also explore Angular File Upload feature tour page for its groundbreaking features. You can also explore our Angular File Upload example to understand how to browse the files which you want to upload to the server.