Hello, I'm following the sample on the demo page:
Dim uploader As RadUpload = e.Item.FindControl("RadUpload1")
Dim imageFile As UploadedFile = Nothing
If uploader.UploadedFiles.Count > 0 Then
imageFile = uploader.UploadedFiles(0)
End If
In my radgrid i have an edittemplate with radupload in it. Everything shows up fine, i browse, select file, and click insert, this kicks off the event where the above snippet sits in. but the uploader shows 0 files all the time. I found a mention of something like "enableajax="off", but i don't see that as one of the options in this release. What am I missing?
Thanks,
Viktor.
Dim uploader As RadUpload = e.Item.FindControl("RadUpload1")
Dim imageFile As UploadedFile = Nothing
If uploader.UploadedFiles.Count > 0 Then
imageFile = uploader.UploadedFiles(0)
End If
In my radgrid i have an edittemplate with radupload in it. Everything shows up fine, i browse, select file, and click insert, this kicks off the event where the above snippet sits in. but the uploader shows 0 files all the time. I found a mention of something like "enableajax="off", but i don't see that as one of the options in this release. What am I missing?
Thanks,
Viktor.