Multiple Selection

14 Aug 20181 minute to read

The FileExplorer allows the user to select multiple files by enabling the allowMultiSelection property. The multiple selection can be done by pressing the Ctrl key or Shift key. You can select all the files in the directory by pressing “Ctrl + A”. The multiple selection is useful on copy pasting multiple files, deleting multiple files and downloading multiple files. In another way, multiple files can be selected by mouse down and drag over the desired files. In addition to that, additional files can be selected with the preselected file by holding the ctrl/shift key and drag the mouse over the files. Also, holding the ctrl/shift key and dragging over selected files will unselect the selected files.

The select event will be triggered when the items of FileExplorer control is selected.
Also unselect event will be triggered when the items of FileExplorer control is unselected.

NOTE

For selecting files by mouse down and drag set allowMultiSelection property as true.

  • HTML
  • <ej-fileexplorer id="fileExplorer" path= "http://js.syncfusion.com/demos/ejServices/Content/FileBrowser/"
        ajaxAction="http://js.syncfusion.com/demos/ejServices/api/FileExplorer/FileOperations" 
        [allowMultiSelection]="true" style="display:block">
    </ej-fileexplorer>
    <!--allowMultiSelection property is true by default-->