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: components/filemanager/events.md
+33-16Lines changed: 33 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ This article explains the events available in the Telerik FileManager for Blazor
21
21
*[Other Events](#other-events) - other events the grid provides.
22
22
*[OnModelInit](#onmodelinit)
23
23
*[OnDownload](#ondownload)
24
+
*[PathChanged](#pathchanged)
24
25
*[SelectedItemsChanged](#selecteditemschanged)
25
26
*[ViewChanged](#viewchanged)
26
27
@@ -348,6 +349,10 @@ A FileManager in a WebAssembly app usually displays files from a remote server.
348
349
1. The server returns the file content.
349
350
1. The `OnDownload` handler puts the returned file content to a `MemoryStream` and assigns it to `args.Stream`.
350
351
352
+
### PathChanged
353
+
354
+
The `PathChanged` event fires when the user navigates to a different folder through the TreeView or by double-clicking a folder item in the [FileManager View]({%slug filemanager-views%}). The event handler receives the new path as a `string` argument.
355
+
351
356
### SelectedItemsChanged
352
357
353
358
The `SelectedItemChanged` event fires every time the user clicks on a new file/folder in the main pane of the FileManager. You can use it with one-way binding of the `SelectedItems` parameter to respond to user selection.
@@ -364,7 +369,8 @@ The `ViewChanged` event fires when the user toggles between the [two FileManager
364
369
@using System.IO
365
370
366
371
<TelerikFileManager Data="@Files"
367
-
@bind-Path="@DirectoryPath"
372
+
Path="@DirectoryPath"
373
+
PathChanged="@OnPathChanged"
368
374
View="@CurrentView"
369
375
ViewChanged="@OnViewChanged"
370
376
Height="400px"
@@ -393,12 +399,12 @@ The `ViewChanged` event fires when the user toggles between the [two FileManager
Copy file name to clipboardExpand all lines: components/multiselect/overview.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,7 @@ The Blazor MultiSelect provides various parameters that allow you to configure t
111
111
|`MinLength`|`int`| How many characters the user must type before the suggestion list appears. Often works together with [filtering]({%slug multiselect-filter%}). |
112
112
| `PersistFilterOnSelect` | `bool` | Controls whether the filter input will be cleared when the user selects an item. Applies when [MultiSelect filtering]({%slug multiselect-filter%}) is enabled and `AutoClose="false"`.
113
113
|`Placeholder`|`string`| The text the user sees as a hint when there is no selection. |
114
+
|`ShowArrowButton`|`bool`| Controls whether the MultiSelect will show an arrow button, which hints about its dropdown. When enabled, an empty MultiSelect component looks similar to a ComboBox, otherwise it looks similar to a TextBox. |
114
115
|`TextField`|`string` <br /> (`Text`)| The field in the model from which the text of the items is taken. |
115
116
|`TItem`|`Type`| The type of the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. |
116
117
|`TValue`|`Type`| The type of the value field in the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. The type of the values can be:<br /> - `number` (such as `int`, `double`, and so on)<br /> - `string`<br /> - `Guid`<br /> - `Enum`|
0 commit comments