navigate
Fired when navigation occurs.
Event Data
e.sender kendo.ui.FileManager
The widget instance which fired the event.
e.path String
The navigation path.
Example
<div id="fileManager"></div> <script> var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/"; $("#fileManager").kendoFileManager({ navigate: function(e) { console.log("Navigated to: " + e.path); }, dataSource: { transport: { read: { method: "POST", url: baseUrl + "Read" } } } }); </script> In this article