Uploader not workig in Safari

Dear friends at Syncfusion, 

I don't know if this has been reported yet, but we've find out that we're unable to use Uploader component in Safari

This is my simple form:
@using (Html.BeginForm()) 
{
    @Html.AntiForgeryToken()
    
<div class="form-horizontal">
    @Html.ValidationSummary(true, "", new { @class = "text-danger" })

    @Html.HiddenFor(model => model.ProjectID)

    @Html.HiddenFor(model => model.DocumentType)

    <div class="form-group">
        @Html.LabelFor(model => model.Path, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Path, new { htmlAttributes = new { @class = "form-control", @readonly = true } })
            @Html.ValidationMessageFor(model => model.Path, "", new { @class = "text-danger" })
        </div>
    </div>

    <div class="form-group">
        <div class="col-md-offset-2 col-md-10">
            @Html.EJS().Uploader("UploadFiles").EnablePersistence().Render()
        </div>
    </div>

    <div class="form-group">
        <div class="col-md-offset-2 col-md-10">
            <input type="submit" value="Upload" class="btn btn-default" />
        </div>
    </div>
</div>
}

And this is the corresponding controller action signature:
public ActionResult Create(IEnumerable<HttpPostedFileBase> UploadFiles, [Bind(Include = "DocumentID,ParentID,Path,Name,Created,AuthorId")] Document                documentInput)
        {

}

When posting the form in Safari, no files are actually send to UploadFiles, and it remains empty.
The same thing works fine in Chromium-based browser and in Firefox.

Is this some known issue?

Currently using Syncfusion EJ2 v. 18.2500.0.46

Thank you for your advise.

Petr


6 Replies

SP Sureshkumar P Syncfusion Team September 4, 2020 02:18 AM UTC

Hi Petr, 
 
Sorry for the late reply. 
 
We have validated your requirement in our end. We will update the further details in two business days September 8th, 2020. We appreciate your patience. 
 
Regards, 
Sureshkumar P 
 



PE Petr September 11, 2020 08:12 AM UTC

Dear Sureshkumar,
thank you very much for your input. 
I'll be looking forwards for further instructions. 

Best regards, 
Petr


SP Sureshkumar P Syncfusion Team September 14, 2020 12:03 PM UTC

Hi Petr, 
 
Deeply regret for the inconvenience caused. 
 
We will try to replicate the issue in our end based on your shared code examples. And we will update further details in two business days (September 16th,2020). We appreciate your patience. 
 
Meantime, please update below details to proceed further. 
1.     If possible, please share the issue replicated sample. 
2.     Please share the browser details such as browser version details.  
 
Regards, 
Sureshkumar P 



SP Sureshkumar P Syncfusion Team September 17, 2020 10:09 AM UTC

Hi Petr, 
 
Deeply regret for the inconvenience caused. 
 
Due to the pandemic situation we are unable to check this issue immediately in Mac. We will check and get back to you at the earliest. We appreciate your patience 
 
Regards, 
Sureshkumar P 



PE Petr October 14, 2020 06:45 PM UTC

No problem, just let me know if there are any news.


SP Sureshkumar P Syncfusion Team October 15, 2020 04:56 AM UTC

Hi Petr, 
 
Thanks for your update. We will update you once we get the solution.  
 
Regards, 
Sureshkumar P 


Loader.
Up arrow icon