Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes


Issue 1: For non-chunked uploads:

  • a) Custom headers and Custom form data set in OnUploadStart are ignored.
  • b) Minor issue, but key names of custom headers which are present from BeforeUploadStart are converted to lowercase (not as specified originally).


Replication Procedure:

  •   Run the sample
  • Navigate to File upload page
  • And upload any file
  • And check the headers and response in network tab
  • You can see the issue

 

Expected Behavior: CustomHeader and customformdata setted in the OnUploadStart event should updated properly and key names of custom headers which are present from BeforeUploadStart should shows  in actual format

 

Actual Behavior: CustomHeader and customformdata setted in the OnUploadStart event not updated properly and key names of custom headers which are present from BeforeUploadStart are converted to lowercase


Case2: For chunked uploads, OnUploadStart is called twice


Replication Procedure:

  •   Run the sample
  • Navigate to File upload page
  • And upload any single file
  • Set the debugger in OnUploadStart event
  • You can see the issue

Expected Behavior: For chunked uploads, OnUploadStart event should trigger once

 

Actual Behavior: For chunked uploads, OnUploadStart is called twice