imageBrowser.schema.modelObject

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

Example

<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>