All docs
V23.2
24.1
23.2
23.1
22.2
22.1
21.2
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
The page you are viewing does not exist in version 19.2.
19.1
The page you are viewing does not exist in version 19.1.
18.2
The page you are viewing does not exist in version 18.2.
18.1
The page you are viewing does not exist in version 18.1.
17.2
The page you are viewing does not exist in version 17.2.

jQuery FileManager - FileSystemItem.Fields

Fields that provide information about a file system item.

dataItem

The file system data object that stores information about the file system item (name, size, modification date, etc.).

Type: any

dateModified

A timestamp that indicates when the file system item was last modified.

Type:

Date

hasSubDirectories

Specifies whether a directory has subdirectories.

Type:

Boolean

isDirectory

Specifies whether the file system item is a directory.

Type:

Boolean

key

The file system item's key.

Type:

String

name

The file system item's name.

Type:

String

path

The file system item's path.

Type:

String

The path field stores a path to a file/directory as a string of path items separated by a slash. The pathKeys field stores an array of path item keys. This difference between the fields is more distinct if you specify keyExpr for your File System Provider. For example, the path and pathkeys fields may have the following values if keyExpr targets a numeric field:

path: "Documents/Todo.txt"
pathkeys: [10, 20]

pathKeys

The file system item's path specified in keys.

Type:

Array<String>

The path field stores a path to a file/directory as a string of path items separated by a slash. The pathKeys field stores an array of path item keys. This difference between the fields is more distinct if you specify keyExpr for your File System Provider. For example, the path and pathkeys fields may have the following values if keyExpr targets a numeric field:

path: "Documents/Todo.txt"
pathkeys: [10, 20]

size

The file system item's size (in bytes).

Type:

Number

thumbnail

An icon (URL) to be used as the file system item's thumbnail.

Type:

String