Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aspnetmvc/FileExplorer/Behavior-Settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Here are the some properties to customize the behavior of FileExplorer.

## File type restriction

FileExplorer control showcase all the files from the filesystem, here you can customize the file types that what you want to show by using “[FileTypes](http://help.syncfusion.com/js/api/ejfileexplorer#members:filetypes)” property. It filter the files based on the file extensions.
FileExplorer control showcase all the files from the filesystem, here you can customize the file types that what you want to show by using “[FileTypes](https://help.syncfusion.com/api/js/ejfileexplorer#members:filetypes)” property. It filter the files based on the file extensions.
By default it having the value " \*.\* ", so it allows all the file types. In case of image browser you can allow the image files only by setting “*.png, *.gif, *.jpg, *.jpeg”, so it doesn’t allow the other type of files.
In the view page, add FileExplorer helper and specify the file type restriction as shown below.

Expand All @@ -30,7 +30,7 @@ In the view page, add FileExplorer helper and specify the file type restriction

## Customize the AJAX request settings

As you already know FileExplorer is a client – server based control and each action performed in the client sends an AJAX request to the server to perform the server side operations. While the AJAX request, the AJAX configurations can be customized through “[AjaxSettings](http://help.syncfusion.com/js/api/ejfileexplorer#members:ajaxsettings)” property.
As you already know FileExplorer is a client – server based control and each action performed in the client sends an AJAX request to the server to perform the server side operations. While the AJAX request, the AJAX configurations can be customized through “[AjaxSettings](http://help.syncfusion.com/api/js/ejfileexplorer#members:ajaxsettings)” property.
The [beforeAjaxRequest](https://help.syncfusion.com/api/js/ejfileexplorer#events:beforeajaxrequest) event will be triggered before the AJAX request is performed. You can modify the ajax request in this event.

You can see the following requests passed during the **client – server** actions:
Expand Down
6 changes: 3 additions & 3 deletions aspnetmvc/FileExplorer/Context-Menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ It helps to open a file location from the filtered list.

## Context menu Visibility

The presence of the context menu can be controlled by the “[ShowContextMenu](http://help.syncfusion.com/js/api/ejfileexplorer#members:showcontextmenu)” property. This was enabled by default, and by disabling this property you can prevent our built-in context menu.
The presence of the context menu can be controlled by the “[ShowContextMenu](https://help.syncfusion.com/api/js/ejfileexplorer#members:showcontextmenu)” property. This was enabled by default, and by disabling this property you can prevent our built-in context menu.

In the view page, add FileExplorer helper and specify the context menu visibility as false.

Expand All @@ -150,9 +150,9 @@ The context menu items can be enabled or disabled through the client side public

For example, if you disable the “Upload” item, it disables in all places wherever it appears such as open the context menu on “TreeView”, open on file/folder, and open on layout.

* [enableMenuItem](http://help.syncfusion.com/js/api/ejfileexplorer#methods:enablemenuitem)
* [enableMenuItem](https://help.syncfusion.com/api/js/ejfileexplorer#methods:enablemenuitem)

* [disableMenuItem](http://help.syncfusion.com/js/api/ejfileexplorer#methods:disablemenuitem)
* [disableMenuItem](https://help.syncfusion.com/api/js/ejfileexplorer#methods:disablemenuitem)

These methods only accepts the context menu item name as the parameter.

Expand Down
12 changes: 6 additions & 6 deletions aspnetmvc/FileExplorer/Customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords: FileExplorer, Syncfusion, EJ MVC FileExplorer, UG document, Customiza

## Dimension Customization

The dimension of the FileExplorer can be customized through “[Height](http://help.syncfusion.com/js/api/ejfileexplorer#members:height)” and “[Width](http://help.syncfusion.com/js/api/ejfileexplorer#members:width)” property. The dimension can be set in percentage (ex; width: “100 %”), so that the control inherits the width from the parent element.
The dimension of the FileExplorer can be customized through “[Height](https://help.syncfusion.com/api/js/ejfileexplorer#members:height)” and “[Width](https://help.syncfusion.com/api/js/ejfileexplorer#members:width)” property. The dimension can be set in percentage (ex; width: “100 %”), so that the control inherits the width from the parent element.

In the view page, add FileExplorer helper with custom height and width

Expand All @@ -29,7 +29,7 @@ In the view page, add FileExplorer helper with custom height and width

The navigation pane contains the tree view element which displays all the folders from the filesystem in a hierarchical manner. This is useful to a quick navigation of any folder in the filesystem.

The visibility of the navigation pane can be controlled by the “[ShowNavigationPane](http://help.syncfusion.com/js/api/ejfileexplorer#members:shownavigationpane)” property. By disabling this property, you can hide the navigation pane from FileExplorer.
The visibility of the navigation pane can be controlled by the “[ShowNavigationPane](https://help.syncfusion.com/api/js/ejfileexplorer#members:shownavigationpane)” property. By disabling this property, you can hide the navigation pane from FileExplorer.

In the view page, add FileExplorer helper and specify the navigation pane as false

Expand Down Expand Up @@ -66,7 +66,7 @@ You can change the layout using toolbar option. While clicking this tool, popup

![](Customization_images/Customization_img2.jpeg)

Also the layout views can be changed through the “[Layout](http://help.syncfusion.com/js/api/ejfileexplorer#members:layout)” property. The [layoutChange](https://help.syncfusion.com/api/js/ejfileexplorer#events:layoutchange) event will be triggered whenever the layout view type is changed.
Also the layout views can be changed through the “[Layout](https://help.syncfusion.com/api/js/ejfileexplorer#members:layout)” property. The [layoutChange](https://help.syncfusion.com/api/js/ejfileexplorer#events:layoutchange) event will be triggered whenever the layout view type is changed.

In the view page, add FileExplorer helper and specify the layout type as shown below

Expand All @@ -83,9 +83,9 @@ In the view page, add FileExplorer helper and specify the layout type as shown b

### Customizing the Grid view

By default sorting is enabled in grid view of FileExplorer, it helps you to sort each columns in ascending or descending order by pressing the corresponding column header. The sorting functionality can be disabled by setting “[AllowSorting](http://help.syncfusion.com/js/api/ejfileexplorer#members:gridsettings-allowsorting)” property to false.
By default sorting is enabled in grid view of FileExplorer, it helps you to sort each columns in ascending or descending order by pressing the corresponding column header. The sorting functionality can be disabled by setting “[AllowSorting](https://help.syncfusion.com/api/js/ejfileexplorer#members:gridsettings-allowsorting)” property to false.

The behavior of the columns can be customized through the “[Columns](http://help.syncfusion.com/js/api/ejfileexplorer#members:gridsettings-columns)” property.
The behavior of the columns can be customized through the “[Columns](https://help.syncfusion.com/api/js/ejfileexplorer#members:gridsettings-columns)” property.

In the view page, add FileExplorer helper with custom grid settings

Expand Down Expand Up @@ -124,7 +124,7 @@ In the view page, add FileExplorer helper with custom grid settings

## Footer Customization

The footer displays the details of the current selected files and folders, and the footer contains the switcher to change the layout view. The visibility of the footer can be customized by the “[ShowFooter](http://help.syncfusion.com/js/api/ejfileexplorer#members:showfooter)” property.
The footer displays the details of the current selected files and folders, and the footer contains the switcher to change the layout view. The visibility of the footer can be customized by the “[ShowFooter](https://help.syncfusion.com/api/js/ejfileexplorer#members:showfooter)” property.

In the view page, add FileExplorer helper and hides the footer as shown below.

Expand Down
12 changes: 6 additions & 6 deletions aspnetmvc/FileExplorer/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The following section is briefly explain the things to get started with FileExpl

To get start with Essential ASP.NET MVC FileExplorer, create a new MVC Application and add the required assemblies in references and then refer the below specified dependent CSS file as well as scripts

To create a MVC Project and add necessary assemblies you can use the help of the given [MVC-Getting Started](http://help.syncfusion.com/aspnetmvc/getting-started#) Documentation.
To create a MVC Project and add necessary assemblies you can use the help of the given [MVC-Getting Started](https://help.syncfusion.com/aspnetmvc/getting-started#) Documentation.

## Adding the references

Expand All @@ -27,15 +27,15 @@ To include the control in the application the following references need to be ad

CSS file

* [ej.web.all.min.css](http://cdn.syncfusion.com/13.4.0.58/js/web/flat-azure/ej.web.all.min.css#) includes all widgets styles (To know more about theme refer [Theming in Essential JavaScript Component](http://help.syncfusion.com/js/theming-in-essential-javascript-components#)
* [ej.web.all.min.css](https://cdn.syncfusion.com/13.4.0.58/js/web/flat-azure/ej.web.all.min.css) includes all widgets styles (To know more about theme refer [Theming in Essential JavaScript Component](https://help.syncfusion.com/js/theming-in-essential-javascript-components)

N> Essential JS widgets having the support for 13 built-in themes, to know more please check [here](http://docs.syncfusion.com/js/theming-in-essential-javascript-components#)
N> Essential JS widgets having the support for 13 built-in themes, to know more please check [here](https://docs.syncfusion.com/js/theming-in-essential-javascript-components)

### Script references

The external script dependencies of the FileExplorer widget are,

* [jQuery 1.7.1](http://jquery.com/#) or later versions.
* [jQuery 1.7.1](https://jquery.com/) or later versions.

* [jsrender](https://www.jsviews.com/#jsrender) – for grid view template.

Expand Down Expand Up @@ -173,7 +173,7 @@ Used to working with different localization culture formats

You can use the “**ej.web.all.min.js**” file, which encapsulates all the EJ MVC controls and frameworks in one single file

N> To add required assembly references, scripts and CSS files automatically into your application, please refer following link [http://help.syncfusion.com/aspnetmvc/getting-started#through-syncfusion-nuget-packages-2](http://help.syncfusion.com/aspnetmvc/getting-started#through-syncfusion-nuget-packages-2). Also, it configures the “web.config” file automatically.
N> To add required assembly references, scripts and CSS files automatically into your application, please refer following link [http://help.syncfusion.com/aspnetmvc/getting-started#through-syncfusion-nuget-packages-2](https://help.syncfusion.com/aspnetmvc/getting-started#through-syncfusion-nuget-packages-2). Also, it configures the “web.config” file automatically.

## FileExplorer using helper

Expand All @@ -189,7 +189,7 @@ In the view page, add FileExplorer helper as shown below.

{% endhighlight %}

In above code block, “Path” denotes the URL of filesystem that are to be explored in "FileExplorer" and “AjaxAction” specifies the URL of server side AJAX handling method that handles the file operations of FileExplorer control. So “[Path](http://help.syncfusion.com/js/api/ejfileexplorer#members:path)” and “[AjaxAction](http://help.syncfusion.com/js/api/ejfileexplorer#members:ajaxaction)” are the mandatory configuration at here.
In above code block, “Path” denotes the URL of filesystem that are to be explored in "FileExplorer" and “AjaxAction” specifies the URL of server side AJAX handling method that handles the file operations of FileExplorer control. So “[Path](https://help.syncfusion.com/api/js/ejfileexplorer#members:path)” and “[AjaxAction](https://help.syncfusion.com/api/js/ejfileexplorer#members:ajaxaction)” are the mandatory configuration at here.

Add the following code example to the corresponding controller page.

Expand Down
2 changes: 1 addition & 1 deletion aspnetmvc/FileExplorer/Localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ The below table lists out the keys with corresponding texts in English culture.

## Change the Culture

The language of the FileExplorer can be changed by the “[Locale](http://help.syncfusion.com/js/api/ejfileexplorer#members:locale)” property. This property allows the culture code of the country as input. The culture code has to specify in the standard format as **[Language Code]-[County/Region Code]**.
The language of the FileExplorer can be changed by the “[Locale](https://help.syncfusion.com/api/js/ejfileexplorer#members:locale)” property. This property allows the culture code of the country as input. The culture code has to specify in the standard format as **[Language Code]-[County/Region Code]**.

For example the culture code for German is “**de-DE**”.

Expand Down
2 changes: 1 addition & 1 deletion aspnetmvc/FileExplorer/Multiple-Selection.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords: FileExplorer, Syncfusion, EJ MVC FileExplorer, UG document, Multiple
---
# Multiple Selection

The FileExplorer allows the user to select multiple files by enabling the “[AllowMultiSelection](http://help.syncfusion.com/js/api/ejfileexplorer#members:allowmultiselection)” property. The multiple selection can be done by pressing the “**Ctrl”** key or “**Shift”** key. You can select all the files in the directory by pressing “**Ctrl + A**”. The multiple selection is useful on copy pasting multiple files, deleting multiple files and downloading multiple files. In another way, multiple files can be selected by mouse down and drag over the desired files. In addition to that, additional files can be selected with the preselected file by holding the ctrl/shift key and drag the mouse over the files. Also, holding the ctrl/shift key and dragging over selected files will unselect the selected files.
The FileExplorer allows the user to select multiple files by enabling the “[AllowMultiSelection](https://help.syncfusion.com/api/js/ejfileexplorer#members:allowmultiselection)” property. The multiple selection can be done by pressing the “**Ctrl”** key or “**Shift”** key. You can select all the files in the directory by pressing “**Ctrl + A**”. The multiple selection is useful on copy pasting multiple files, deleting multiple files and downloading multiple files. In another way, multiple files can be selected by mouse down and drag over the desired files. In addition to that, additional files can be selected with the preselected file by holding the ctrl/shift key and drag the mouse over the files. Also, holding the ctrl/shift key and dragging over selected files will unselect the selected files.

The [select](https://help.syncfusion.com/api/js/ejfileexplorer#events:select) event will be triggered when the items of FileExplorer control is selected.
Also [unselect](https://help.syncfusion.com/api/js/ejfileexplorer#events:unselect) event will be triggered when the items of FileExplorer control is unselected.
Expand Down
2 changes: 1 addition & 1 deletion aspnetmvc/FileExplorer/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords: FileExplorer, Syncfusion, EJ MVC FileExplorer, UG document, Overview
# Overview

The EJ MVC FileExplorer component provides all the functionalities that is available in [EJ FileExplorer](https://help.syncfusion.com/js/fileexplorer/overview#), since it is a server side wrapper of [EJ FileExplorer](https://help.syncfusion.com/js/fileexplorer/overview#) widget. It is an interface for managing the file system through any web application. It allows the user to perform the most common file operations such as browse files, open, create, rename, copy, paste or move, delete and file searching.
For a live demo of FileExplorer check the online sample from [here](https://mvc.syncfusion.com/demos/web/fileexplorer/default#).
For a live demo of FileExplorer check the online sample from [here](https://ej2.syncfusion.com/home/aspnetmvc.html#platform).

N> The FileExplorer control was officially added with the Essential Studio ASP.NET MVC package from the v13.1 release only.

Expand Down
4 changes: 2 additions & 2 deletions aspnetmvc/FileExplorer/Resizing.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords: FileExplorer, Syncfusion, EJ MVC FileExplorer, UG document, Resizing

The FileExplorer has the resize support through the resize handle which appears at right-bottom corner of footer. By clicking the resize handle the user can resize the FileExplorer through the UI. While resizing the dimension of the FileExplorer is automatically adjusted.

The resize behavior can be enabled through the “[EnableResize](http://help.syncfusion.com/js/api/ejfileexplorer#members:enableresize)” property.
The resize behavior can be enabled through the “[EnableResize](https://help.syncfusion.com/api/js/ejfileexplorer#members:enableresize)” property.

In the view page, add FileExplorer helper with resizable option as shown below

Expand Down Expand Up @@ -48,7 +48,7 @@ In the view page, add FileExplorer helper with responsive option

## Restriction on Resize

You can restrict the dimension of the FileExplorer by setting the “[MinHeight](http://help.syncfusion.com/js/api/ejfileexplorer#members:minheight)”, “[MaxHeight](http://help.syncfusion.com/js/api/ejfileexplorer#members:maxheight)”,  “[MinWidth](http://help.syncfusion.com/js/api/ejfileexplorer#members:minwidth)” and “[MaxWidth](http://help.syncfusion.com/js/api/ejfileexplorer#members:maxwidth)” properties while resizing the FileExplorer.
You can restrict the dimension of the FileExplorer by setting the “[MinHeight](https://help.syncfusion.com/api/js/ejfileexplorer#members:minheight)”, “[MaxHeight](https://help.syncfusion.com/api/js/ejfileexplorer#members:maxheight)”,  “[MinWidth](https://help.syncfusion.com/api/js/ejfileexplorer#members:minwidth)” and “[MaxWidth](https://help.syncfusion.com/api/js/ejfileexplorer#members:maxwidth)” properties while resizing the FileExplorer.

In the view page, add FileExplorer helper and set resize option within particular region.

Expand Down
Loading