$(function () { var options; // Type: wijmo.fileexplorer.wijfileexplorer.options $(".selector").wijfileexplorer(options); });
function wijfileexplorer() : any;
Organize files and folders, and supports basic file operations such as
create, delete, rename, drag and drop.
$(function () { var options; // Type: wijmo.fileexplorer.wijfileexplorer.options $(".selector").wijfileexplorer(options); });
function wijfileexplorer() : any;
Name | Description | |
---|---|---|
actionUri | A value that determines the uri of action which executes the file/folder operations. | |
allowFileExtensionRename | Default value: false A value that determines whether to allow changing the extension of the file while renaming. | |
allowMultipleSelection | Default value: false A value that determines whether to allow multiple items selection. | |
allowPaging | Default value: false A value that determines whether to use paging. | |
currentFolder | A value that indicates the url of current folder. | |
disabled | Default value: false A value that determines whether or not to disable the wijfileexplorer widget. | |
enableCopy | Default value: true A value that determines whether to allow copying of files/folders. | |
enableCreateNewFolder | Default value: true A value that determines whether to allow creating new folders. | |
enableFilteringOnEnterPressed | Default value: false A value that determines whether to perform the filtering after the 'Enter' key is pressed. | |
enableOpenFile | Default value: true A value that determines whether to allow opening a new window with the file. | |
hostUri | A value that determines the host uri of current web application. | |
initPath | A value that determines initial path to load data into the wijfileexplorer widget. | |
mode | A value that determines the explorer mode of the wijfileexplorer widget. Possible values are: 'default' and 'fileTree' | |
pageSize | Default value: 10 A value that determines the number of items loaded per page when using paging. | |
searchPatterns | A string array that determines the patterns of files that are shown, usually the file extensions. | |
shortcuts | A object that determines the shortcuts. |
|
treePanelWidth | Default value: 200 A value that determines the width of the TreeView. | |
viewMode | A string value that determines the ViewMode of the wijfileexplorer widget. Possible values are: 'detail' and 'thumbnail' | |
viewPaths | A string array that determines the folder paths to show in the wijfileexplorer widget. | |
visibleControls | A value that determines which components will be shown in wijfileexplorer. |
Name | Description | |
---|---|---|
destroy | ||
refresh | The refresh method refreshes the content within the wijfileexplorer. | |
widget | Returns a jQuery object containing the original element or other relevant generated element. |
Name | Description | |
---|---|---|
errorOccurred | The errorOccurred event handler. A function called when an error occurs. | |
fileOpened | The fileOpened event handler. A function called after the file is opened. | |
fileOpening | The fileOpening event handler. A function called before the file is opened. | |
filtered | The filtered event handler. A function called after filtering. | |
filtering | The filtering event handler. A function called before filtering. | |
folderChanged | The folderChanged event handler. A function called after current folder is changed. | |
folderLoaded | The folderLoaded event handler. A function called after the current folder is loaded. | |
itemCopied | The itemCopied event handler. A function called after the item is copied. | |
itemCopying | The itemCopying event handler. A function called before the item is copied. | |
itemDeleted | The itemDeleted event handler. A function called after the item is deleted. | |
itemDeleting | The itemDeleting event handler. A function called before the item is deleted. | |
itemMoved | The itemMoved event handler. A function called after the item is moved. | |
itemMoving | The itemMoving event handler. A function called before the item is moved. | |
itemPasted | The itemPasted event handler. A function called after the item is pasted. | |
itemPasting | The itemPasting event handler. A function called before the item is pasted. | |
itemRenamed | The itemRenamed event handler. A function called after the item is renamed. | |
itemRenaming | The itemRenaming event handler. A function called before the item is renamed. | |
itemSelected | The itemSelected event handler. A function called after the item is selected. | |
newFolderCreated | The newFolderCreated event handler. A function called after a new folder is created. | |
newFolderCreating | The newFolderCreating event handler. A function called before a new folder is created. |