jQuery FileManager - itemView

Configures the file and folder view.

Type:

Object

Default Value: null

NOTE
Set the itemView.mode property to details to configure columns in the UI component.

View Demo

DevExtreme File Manager - Item View

jQuery
JavaScript
$(function () {
    $("#file-manager").dxFileManager({
        itemView: {
            mode: "details",
            showFolders: false,
            showParentFolder: false
        }
        // ...
    });
});

details

Configures the "Details" file system representation mode.

Type:

Object

mode

Specifies the file system representation mode.

Type:

String

Default Value: 'details'
Accepted Values: 'details' | 'thumbnails'

A user can use the view switcher on the toolbar to change the mode.

showFolders

Specifies whether to display folders in the view. When this property is false, folders are displayed in the navigation pane only.

Type:

Boolean

Default Value: true

showParentFolder

Specifies whether to display the parent folder in the view.

Type:

Boolean

Default Value: true