New to Kendo UI for jQueryStart a free 30-day trial

Error

events

Fired when a error in the DataSource happen.

Event data

e.sender kendo.ui.FileManager

The widget instance which fired the event.

e.xhr Object

The XMLHttpRequest object.

e.status String

The request status.

e.errorThrown String

The error message.

<div id="filemanager"></div>
<script>
    $("#filemanager").kendoFileManager({
      dataSource: {
        schema: kendo.data.schemas.filemanager,
        transport: {
          read: {
            url: "https://demos.telerik.com/service/v2/core/FileManager/Read",
            method: "POST"
          }
        }
      },
      error: function(e) {
        console.log("Request failed with status " + e.status)
      }
    });
</script>
Not finding the help you need?
Contact Support