Kendo.Mvc.UI.Fluent.FileManagerBuilder
Defines the fluent API for configuring the Kendo FileManager for ASP.NET MVC.
Methods
UploadUrl(System.String,System.String,System.Web.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 System.Web.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(System.Web.Routing.RouteValueDictionary)
Sets the route values for the upload operation
Parameters
routeValues System.Web.Routing.RouteValueDictionary
The route values of the action method.
UploadUrl(System.String,System.Web.Routing.RouteValueDictionary)
Sets the route and values for the upload operation
Parameters
routeName System.String
Name of the route.
routeValues System.Web.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>>)
Configure the DataSource of the component
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerDataSourceBuilder>
The action that configures the DataSource.
Width(System.Double)
Configures the width of the FileManager.
Parameters
value System.Double
The value that configures the width.
Height(System.Double)
Configures the height of the FileManager.
Parameters
value System.Double
The value that configures the height.
InitialView(System.String)
Configures the initial view of the FileManager.
Parameters
value System.String
The value that configures the initialview.
Resizable(System.Boolean)
Configures the resizable features of the FileManager.
Parameters
value System.Boolean
The value that configures the resizable.
Draggable(System.Boolean)
Enables or disables the drag and drop features of the FileManager.
Parameters
value System.Boolean
The value that configures the draggable.
UploadUrl(System.String)
Sets the upload url for the Upload widget.
Parameters
value System.String
The value that configures the 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 action that configures the upload.
Toolbar(System.Boolean)
Configures the Toolbar of the FileManager
Parameters
enabled System.Boolean
Enables or disables the toolbar option.
Toolbar(System.Action<Kendo.Mvc.UI.Fluent.FileManagerToolbarSettingsBuilder>)
Configures the Toolbar of the FileManager
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerToolbarSettingsBuilder>
The action that configures the toolbar.
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 action that configures the dialogs.
ContextMenu(System.Boolean)
Configures the ContextMenu of the FileManager.
Parameters
enabled System.Boolean
Enables or disables the contextmenu option.
ContextMenu(System.Action<Kendo.Mvc.UI.Fluent.FileManagerContextMenuSettingsBuilder>)
Configures the ContextMenu of the FileManager.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerContextMenuSettingsBuilder>
The action that configures the contextmenu.
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 action that configures the views.
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 action that configures the previewpane.
Breadcrumb(System.Boolean)
Configures or disables the Breadcrumb component.
Parameters
enabled System.Boolean
Enables or disables the breadcrumb option.
Breadcrumb(System.Action<Kendo.Mvc.UI.Fluent.FileManagerBreadcrumbSettingsBuilder>)
Configures or disables the Breadcrumb component.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.FileManagerBreadcrumbSettingsBuilder>
The action that configures the breadcrumb.
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 action that configures the messages.
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")
)
%>