Skip to main content
JS

FileManagerSelectionMode Enum

Lists values that specify the selection behavior for the file manager.

Namespace: DevExtreme.AspNet.Mvc

Assembly: DevExtreme.AspNet.Core.dll

Declaration

[JsonConverter(typeof(StringEnumConverter))]
public enum FileManagerSelectionMode

Members

Name Description
Multiple

End users can select multiple items.

Single

End users can select a single item only.

Remarks

Use the SelectionMode(FileManagerSelectionMode) method to specify the selection behavior of the file manager.

Single Selection:

@(Html.DevExtreme().FileManager()
    .SelectionMode(selection => selection.Mode(FileManagerSelectionMode.Single))
)

Multiple Selection:

@(Html.DevExtreme().FileManager()
    .SelectionMode(selection => selection.Mode(FileManagerSelectionMode.Multiple))
)
See Also