I realize there is a way to populate a Kendo Upload with initial files, however I'm trying to take this a step further.
In the app I'm building I have a drawer widget that allows the user to toggle it from visible to hidden and due to the nature of this environment the drawer is actually destroyed between toggle. It's not a problem for the rest of my data because I'm using MVVM with KnockoutJS to simply rebind the content in the drawer when shown again. The Kendo Upload is inside this drawer and I need the ability for the user to be able to toggle the drawer while the Uploader is uploading (which means the Uploader html will be removed from the DOM).
I noticed that once an upload is started the Kendo Upload actually continues to work even though the associated HTML doesn't exist anymore which sounds promising. I believe the solution is to figure out a way to associate a new Upload html with an existing Kendo Upload context.
I do realize this isn't a supported feature, but was hoping you could help point me in the right direction. I believe I have the skill necessary to tackle this, but any help would be appreciated.
Thanks.