fileBrowser.transport.uploadUrl String

The URL which will handle the upload of the new files. If not specified the Upload button will not be displayed.

Example

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  tools: [
    "insertFile"
  ],
  fileBrowser: {
    transport: {
      uploadUrl: "/upload"
    }
  }
});
</script>
In this article