This is a migrated thread and some comments may be shown as answers.

Kendo UI Upload Async Error

1 Answer 112 Views
Upload
This is a migrated thread and some comments may be shown as answers.
Stephen
Top achievements
Rank 1
Stephen asked on 18 Sep 2012, 07:26 PM
I'm testing my new Kendo Upload tool in an MVC site. I've found in our XP QA machine, using any version of IE, I'm not able to upload any images (I've set to only allow .jpg). I get a permission denied error in my XMLHttpRequest response.

I believe this is because we're showing the MVC site inside of an iframe of another site, and we're getting some kind of cross-domain issue. However if this were the case, would it only be happening in an XP environment, or all of them? Does anyone know enough about Kendo to point me in the right direction?

    @(Html.Kendo().Upload()
        .Name("images")
        .Async(async => async
            .Save("Save", "Upload")
            .Remove("Remove", "Upload")
            .AutoUpload(true)
        )
        .Events(events => events
            .Select("onSelect")
            .Remove("onRemove")
            .Error("onError")
            .Upload("onUpload")
            .Success("onSuccess")
        )
    )

1 Answer, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 21 Sep 2012, 08:39 AM
Hi,

I tried reproducing the issue by hosting the Upload demos in an IFRAME as shown here. This worked fine in IE8 on XP.

That said, we have received similar reports before, but we're unable to pinpoint the exact scenario that triggers the problem.

All the best,
Tsvetomir Tsonev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Upload
Asked by
Stephen
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or