Kendo.Mvc.UI.Fluent.FileManagerBuilder
Defines the fluent API for configuring the Kendo UI FileManager
Methods
UploadUrl(System.String,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the action, controller and route values for the upload operation
Parameters
actionName System.String
Name of the action.
controllerName System.String
Name of the controller.
routeValues Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values.
UploadUrl(System.String,System.String,System.Object)
Sets the action, controller and route values for the upload operation
Parameters
actionName System.String
Name of the action.
controllerName System.String
Name of the controller.
routeValues System.Object
The route values.
UploadUrl(System.String,System.String)
Sets the action and controller for the upload operation
Parameters
actionName System.String
Name of the action.
controllerName System.String
Name of the controller.
UploadUrl(Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the route values for the upload operation
Parameters
routeValues Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values of the action method.
UploadUrl(System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)
Sets the route and values for the upload operation
Parameters
routeName System.String
Name of the route.
routeValues Microsoft.AspNetCore.Routing.RouteValueDictionary
The route values.
UploadUrl(System.String,System.Object)
Sets the route and values for the upload operation
Parameters
routeName System.String
Name of the route.
routeValues System.Object
The route values.
UploadUrl(System.Linq.Expressions.Expression<System.Action<T1>>)
Sets the action for the upload operation
Parameters
controllerAction System.Linq.Expressions.Expression<System.Action<T1>>
The action.
DataSource(System.Action<Kendo.Mvc.UI.Fluent.FileManagerDataSourceBuilder<System.Object>>)
Sets the data source configuration of the MultiSelect.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerDataSourceBuilder>
The lambda which configures the data source
Width(System.Double)
Configures the width of the FileManager.
Parameters
value System.Double
The value for Width
Height(System.Double)
Configures the height of the FileManager.
Parameters
value System.Double
The value for Height
InitialView(System.String)
Configures the initial view of the FileManager.
Parameters
value System.String
The value for InitialView
Resizable(System.Boolean)
Configures the resizable features of the FileManager.
Parameters
value System.Boolean
The value for Resizable
Draggable(System.Boolean)
Enables or disables the drag and drop features of the FileManager.
Parameters
value System.Boolean
The value for Draggable
UploadUrl(System.String)
Sets the upload url for the Upload widget.
Parameters
value System.String
The value for UploadUrl
Upload(System.Action<Kendo.Mvc.UI.Fluent.FileManagerUploadSettingsBuilder>)
Configures the composite Upload widget of the FileManager. Accepts the same options as the kendoUpload widget.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerUploadSettingsBuilder>
The configurator for the upload setting.
Toolbar(System.Action<Kendo.Mvc.UI.Fluent.FileManagerToolbarSettingsBuilder>)
Configures the Toolbar of the FileManager
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerToolbarSettingsBuilder>
The configurator for the toolbar setting.
Toolbar(System.Boolean)
Configures the Toolbar of the FileManager
Parameters
enabled System.Boolean
Enables or disables the toolbar option.
Dialogs(System.Action<Kendo.Mvc.UI.Fluent.FileManagerDialogsSettingsBuilder>)
Specifies the composite Dialog widgets of the FileManager.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerDialogsSettingsBuilder>
The configurator for the dialogs setting.
ContextMenu(System.Action<Kendo.Mvc.UI.Fluent.FileManagerContextMenuSettingsBuilder>)
Configures the ContextMenu of the FileManager.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerContextMenuSettingsBuilder>
The configurator for the contextmenu setting.
ContextMenu(System.Boolean)
Configures the ContextMenu of the FileManager.
Parameters
enabled System.Boolean
Enables or disables the contextmenu option.
Views(System.Action<Kendo.Mvc.UI.Fluent.FileManagerViewsSettingsBuilder>)
Configures every view registered for the FileManager.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerViewsSettingsBuilder>
The configurator for the views setting.
PreviewPane(System.Action<Kendo.Mvc.UI.Fluent.FileManagerPreviewPaneSettingsBuilder>)
Configures the Preview Pane of the FileManager.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerPreviewPaneSettingsBuilder>
The configurator for the previewpane setting.
Breadcrumb(System.Action<Kendo.Mvc.UI.Fluent.FileManagerBreadcrumbSettingsBuilder>)
Configures or disables the Breadcrumb component.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerBreadcrumbSettingsBuilder>
The configurator for the breadcrumb setting.
Breadcrumb(System.Boolean)
Configures or disables the Breadcrumb component.
Parameters
enabled System.Boolean
Enables or disables the breadcrumb option.
Messages(System.Action<Kendo.Mvc.UI.Fluent.FileManagerMessagesSettingsBuilder>)
Defines the text of the localizable UI parts of the FileManager.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerMessagesSettingsBuilder>
The configurator for the messages setting.
Events(System.Action<Kendo.Mvc.UI.Fluent.FileManagerEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().FileManager()
.Name("FileManager")
.Events(events => events
.Navigate("onNavigate")
)
)