Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 203dd55

Browse files
Merge branch 'ButtonandmouseselectionfeatureMVC' into 'hotfix/hotfix-v15.4.0.17'
Button and mouse selection feature MVC UG - committed See merge request !576
2 parents bb9d6c2 + 80322ff commit 203dd55

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

‎aspnetmvc/FileExplorer/Multiple-Selection.md‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ keywords: FileExplorer, Syncfusion, EJ MVC FileExplorer, UG document, Multiple
88
---
99
# Multiple Selection
1010

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.
1214

1315
In the view page, add FileExplorer helper and specify the multi selection as true
1416

@@ -17,9 +19,9 @@ In the view page, add FileExplorer helper and specify the multi selection as tru
1719
@(Html.EJ().FileExplorer("fileExplorer")
1820
.Path("~/FileExplorerContent/")
1921
.AjaxAction(@Url.Content("FileActionDefault"))
20-
.AllowMultiSelection(false)
22+
.AllowMultiSelection(true)
2123
)
22-
24+
@*AllowMultiSelection property is true by default*@
2325
{% endhighlight %}
2426

2527
## Checkbox option
5.01 KB
Loading[フレーム]

‎aspnetmvc/Slider/Updating-slider-value.md‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,34 @@ In the above example, for Default Slider the slider value starts from "40" (
8080

8181
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]".
8282

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.
94+
95+
96+
97+
{% highlight CSHTML %}
98+
99+
// Add this code in your view page
100+
101+
@(Html.EJ().Slider("rangeSlider").SliderType(SlideType.Range).Values("30,60")
102+
103+
.Width("500").ShowButtons(true))
104+
105+
106+
{% endhighlight %}
107+
108+
109+
Execute the above code example to render the following output.
110+
111+
112+
![](Button-Support_images/Button-Support_img1.png)
113+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /