Kendo.Mvc.UI.Fluent.FileManagerEventBuilder
Defines the fluent API for configuring the Kendo UI FileManager for ASP.NET MVC events.
Methods
Navigate(System.String)
Fired when navigation occurs.
For additional information check the navigate event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the navigate event.
Navigate(System.Func<System.Object,System.Object>)
Fired when navigation occurs.
For additional information check the navigate event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Select(System.String)
Fired when selection changes.
For additional information check the select event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the select event.
Select(System.Func<System.Object,System.Object>)
Fired when selection changes.
For additional information check the select event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Open(System.String)
Fired when a file is opened (with double click).
For additional information check the open event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the open event.
Open(System.Func<System.Object,System.Object>)
Fired when a file is opened (with double click).
For additional information check the open event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Execute(System.String)
Fired when a command is executed.
For additional information check the execute event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the execute event.
Execute(System.Func<System.Object,System.Object>)
Fired when a command is executed.
For additional information check the execute event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Error(System.String)
Fired when a error in the DataSource happen.
For additional information check the error event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the error event.
Error(System.Func<System.Object,System.Object>)
Fired when a error in the DataSource happen.
For additional information check the error event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
DataBinding(System.String)
Fired before the widget binds to its data source.
For additional information check the dataBinding event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the dataBinding event.
DataBinding(System.Func<System.Object,System.Object>)
Fired before the widget binds to its data source.
For additional information check the dataBinding event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
DataBound(System.String)
Fired when the widget is bound to data from its data source.
For additional information check the dataBound event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the dataBound event.
DataBound(System.Func<System.Object,System.Object>)
Fired when the widget is bound to data from its data source.
For additional information check the dataBound event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Drop(System.String)
Fired when a file is dragged and dropped over a folder.
For additional information check the drop event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the drop event.
Drop(System.Func<System.Object,System.Object>)
Fired when a file is dragged and dropped over a folder.
For additional information check the drop event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Command(System.String)
Fired when server command is executed (copy, move, delete or rename).The event is useful to get feedback when server commands has failed or succeeded and take additional actions based on the status.
For additional information check the command event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the command event.
Command(System.Func<System.Object,System.Object>)
Fired when server command is executed (copy, move, delete or rename).The event is useful to get feedback when server commands has failed or succeeded and take additional actions based on the status.
For additional information check the command event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.