Hi,
i am using the blazor webassembly version and want to preprocess files on the client side before upload.
Is it possible to allow multiple and parallel file upload but preprocess each file (like changing it's content) in memory on client side?
When using something like this:
<SfUploader>
<UploaderEvents ValueChange="OnChangeAsync"></UploaderEvents>
</SfUploader>
each file is processed one after another but i to have a callback for each file which is present/loaded as stream in memory. Then i would change it's content and send it to and endpoint. This seems similar to
<UploaderAsyncSettings SaveUrl="api/SampleData/Save" RemoveUrl="api/SampleData/Remove">
but i want to manipulate the files before they are sent to this endpoint on client side.
Thanks in advance.
Kind regards
Tobias