You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetmvc/FileExplorer/Multiple-Selection.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ keywords: FileExplorer, Syncfusion, EJ MVC FileExplorer, UG document, Multiple
8
8
---
9
9
# Multiple Selection
10
10
11
-
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.
11
+
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.
12
+
13
+
N> For selecting files by mouse down and drag set `AllowMultiSelection` property as true.
12
14
13
15
In the view page, add FileExplorer helper and specify the multi selection as true
14
16
@@ -17,9 +19,9 @@ In the view page, add FileExplorer helper and specify the multi selection as tru
17
19
@(Html.EJ().FileExplorer("fileExplorer")
18
20
.Path("~/FileExplorerContent/")
19
21
.AjaxAction(@Url.Content("FileActionDefault"))
20
-
.AllowMultiSelection(false)
22
+
.AllowMultiSelection(true)
21
23
)
22
-
24
+
@*AllowMultiSelection property is true by default*@
Copy file name to clipboardExpand all lines: aspnetmvc/Slider/Updating-slider-value.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,3 +80,34 @@ In the above example, for Default Slider the slider value starts from "40" (
80
80
81
81
For Range Slider, the value starts from "10" (min value) and ends in "90" (max value). The range shadow occupies the entire Slider, since the range (values) is specified as "[10, 90]".
82
82
83
+
### Buttons
84
+
85
+
Slider includes the button support for increment or decrement the values of the slider.
86
+
87
+
#### Enabling Buttons
88
+
89
+
Use the ShowButtons property to enable the button support. By default this property is disabled. Data type of this property is "Boolean".
90
+
91
+
The following steps explains you on how to enable button support in Slider.
92
+
93
+
1. In an VIEW page, specify the helper elements to render the Range Slider.
0 commit comments