select
Fired when selection changes.
Event Data
e.sender kendo.ui.FileManager
The widget instance which fired the event.
e.entries Array
The selected file/files (the JSON representation of the files).
Example
<div id="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
    $("#fileManager").kendoFileManager({
        select: function(e) {
            console.log("Selected files: ", e.entries);
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>In this article