hi I am the user of kendo-uploader
when I open the kendo-window, my fileUpload have to Keep some files what I can remove, so I use a Initailfile Option like the Code of below
$("#fileUpload").kendoUpload({
        async: {
          saveUrl: "save",
          removeUrl: "remove",
          autoUpload: false,
          removeVerb: "DELETE",
        },
        remove: onRemove,
        files: this.mUploadFiles
      });
but I make a Problem because when I press the X button ,It works remove process immediately but I want to use my Custom remove process.
How can I use my Custom remove Process . Please help me to solve the problem
