We are evaluating SlickUpload for purchase in an enterprise environment and are pretty close to abandoning our interest in the product. Before we explore other options, we have two questions:
1.) Is it possible to accomplish an asynchronous upload with SlickUpload 6.0.3 using Javascript / JQuery and receive information about the upload on both the client and server sides? We have tried several permutations of form posts, handler uploads, attempts to call back to Javascript functions using
"var uploadConnector = new kw.UploadConnector(
{
id: "uploadConnector",
uploadHandlerUrl: handler,
onUploadSessionEnded: methodName,
uploadForm: "",
uploadProfile: "neoFileName",
autoUploadOnSubmit: false,
autoCompleteAfterLastFile: true,
onBeforeSessionEnd: onBeforeSessionEnd,
onUploadSessionStarted: onSessionStarted
});"
and to no avail (apparently the "onUploadSessionEnded" call back flat doesn't work). We have also tried to make something happen on the server using "completeHandlerUrl" without any luck. I've read in a couple of places that it IS possible, but documentation is spotty. Do you have any documentation or code samples that do this?
2. Is it possible to use SlickUpload within a partial view in MVC to upload files, whether asynchronously or not? Do you have any documentation on this?
Thank you ahead of time for any help you can provide. We like this tool as it performs in synchronous use cases with full page postback, however much of our site is managed with asynchronous calls and partial views and we would like to be able to make this tool work in those cases before buying. Otherwise, we will turn to opensouce alternatives on offer that accomplish much of this functionality with JQuery and/or Flash.