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

Set the object which describes the file/directory entry fields. Note that a name, type and size fields should be set.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: ["createLink"],
    fileBrowser: {
        schema: {
            model: {
                id: "name",
                fields: {
                    name: { field: "Name" },
                    type: { field: "Type" },
                    size: { field: "Size" }
                }
            }
        }
    }
});
</script>

Defines the field mappings for the file browser data model. This configuration specifies which fields in the server response contain the name, type, and size information for files and directories. The fields object allows you to map the server data structure to the expected properties that the file browser uses to display and manage files. Each field can be configured as either a string (field name) or an object with additional parsing options.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: ["createLink"],
    fileBrowser: {
        schema: {
            model: {
                fields: {
                    name: "Name",
                    type: "Type",
                    size: "Size"
                }
            }
        }
    }
});
</script>

The name of the field which acts as an identifier.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: ["createLink"],
    fileBrowser: {
        schema: {
            model: {
                id: "name"
            }
        }
    }
});
</script>