JavaScript/jQuery FileManager - permissions

Specifies actions that a user is allowed to perform on files and folders.

Type:

Object

View Demo

JavaScript
  • $(function () {
  • $("#file-manager").dxFileManager({
  • permissions: {
  • create: true,
  • copy: true,
  • move: true,
  • remove: true,
  • rename: true
  • },
  • // ...
  • });
  • });

copy

Specifies whether a user is allowed to copy files and folders.

Type:

Boolean

Default Value: false

create

Specifies whether a user is allowed to create files and folders.

Type:

Boolean

Default Value: false

download

Specifies whether a user is allowed to download files and folders.

Type:

Boolean

Default Value: false

move

Specifies whether a user is allowed to move files and folders.

Type:

Boolean

Default Value: false

remove

Specifies whether a user is allowed to remove files and folders.

Type:

Boolean

Default Value: false

rename

Specifies whether a user is allowed to rename files and folders.

Type:

Boolean

Default Value: false

upload

Specifies whether a user is allowed to upload files.

Type:

Boolean

Default Value: false