This question is locked. New answers and comments are not allowed.
I've got an upload control in a view and it is creating the html for the control, but it doesn't appear the client script that sets up the functionality on the client is getting emitted. I'm using the asp.net mvc 4 beta and the 2012.1.214 mvc extensions release from nuget.
View
I had to put this on the page manually to get it to work.
View
@(Html.Telerik().Upload().Name("products") .Multiple(true) .Async(async => async.AutoUpload(false) .Remove("Remove", "Attachments") .Save("Save", "Attachments")))I had to put this on the page manually to get it to work.
jQuery('#products').tUpload({ async: { "saveUrl": "/Attachments/Save", "removeUrl": "/Attachments/Remove", "autoUpload": true} });