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

ImageBrowser.schema

configuration

Set the object responsible for describing the image raw data format.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: ["insertImage"],
    imageBrowser: {
        transport: {
            read: "/imagebrowser/read"
        },
        schema: {
            type: "json",
            data: "data"
        }
    }
});
</script>

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

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