fileBrowser.path String
(default: "/")
Defines the initial folder to display, relative to the root.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: [
"insertFile"
],
fileBrowser: {
/* omitted for brevity */
path: "/uploads/"
}
});
</script>